import type { ExtractPropTypes } from "vue";
export interface CheckboxOption {
    value: string | number;
    label: string;
    disabled?: boolean;
}
export declare const checkboxProps: {
    readonly checkboxs: {
        readonly type: import("vue").PropType<CheckboxOption[]>;
        readonly default: () => never[];
    };
};
export type CheckboxProps = ExtractPropTypes<typeof checkboxProps>;
