import { ReactNode } from 'react'; import CSS from 'csstype'; declare function LabelledCheckBox({ borderRadius, label, checked, onClick, padding, backgroundColor, style, textMargin, checkboxStyle, alignItems }: { borderRadius?: string; label?: ReactNode; onClick?: () => void; checked?: boolean; padding?: string; backgroundColor?: string; style?: CSS.Properties; textMargin?: string; checkboxStyle?: CSS.Properties; alignItems?: string; }): JSX.Element; export default LabelledCheckBox;