import React from 'react'; import { CheckBoxProps } from '../CheckBox/CheckBox'; import { FlexItemProps } from '../helpers/styled'; import { LabelProps } from '../Label/Label'; export interface CheckBoxFieldProps extends CheckBoxProps, FlexItemProps { label: React.ReactNode; labelProps?: Omit; id?: string; name?: string; disabled?: boolean; } export declare const CheckBoxField: import("styled-components").StyledComponent>, import("styled-components").DefaultTheme, {}, never>; export default CheckBoxField;