import type { ExtractPropTypes } from 'vue';
import type { CheckboxLabelType } from './interface';
export declare const Props: {
    readonly modelValue: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly label: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly disabled: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly border: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
};
export declare const Emits: {
    readonly 'update:modelValue': (val: CheckboxLabelType) => boolean;
};
export declare type CheckboxPropsType = ExtractPropTypes<typeof Props>;
