import * as styles from '../style/Checkbox'; export declare type CheckboxInterface = { label?: string; description?: string; descriptionPosition?: 'right' | 'left'; styles?: typeof styles; onCheck?: (e: boolean) => void; };