export declare enum CheckboxLabelPositionEnum {
    Before = "before",
    After = "after"
}
export type CheckboxLabelPosition = 'before' | 'after';
