type DarkTheme = 'on' | 'off';
type Status = 'off' | 'on' | 'live';
type Enable = 'yes' | 'no';
type Loading = 'yes' | 'no';
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
    darkTheme?: DarkTheme;
    status?: Status;
    enable?: Enable;
    loading?: Loading;
}>, {
    darkTheme: string;
    status: string;
    enable: string;
    loading: string;
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    "update:status": (value: Status) => void;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
    darkTheme?: DarkTheme;
    status?: Status;
    enable?: Enable;
    loading?: Loading;
}>, {
    darkTheme: string;
    status: string;
    enable: string;
    loading: string;
}>>> & Readonly<{
    "onUpdate:status"?: ((value: Status) => any) | undefined;
}>, {
    status: Status;
    loading: Loading;
    darkTheme: DarkTheme;
    enable: Enable;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export default _default;
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
type __VLS_TypePropsToRuntimeProps<T> = {
    [K in keyof T]-?: {} extends Pick<T, K> ? {
        type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
    } : {
        type: import('vue').PropType<T[K]>;
        required: true;
    };
};
type __VLS_WithDefaults<P, D> = {
    [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
        default: D[K];
    }> : P[K];
};
type __VLS_Prettify<T> = {
    [K in keyof T]: T[K];
} & {};
