import type { ComputedRef, CSSProperties } from 'vue';
import type { ClassListName } from '../../_interface';
import type { DkCheckboxType } from '../../dkcheckbox/src/props';
interface CheckboxType {
    classList: ComputedRef<ClassListName>;
    styleList: CSSProperties;
}
export declare const getCheckbox: (prop: DkCheckboxType) => CheckboxType;
export {};
