import { LabelPositionType, CheckboxType } from "./checkbox.model"; export interface CheckboxConfig { type: CheckboxType; color?: string; labelPosition: LabelPositionType; } export declare const checkboxConfig: CheckboxConfig;