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