import type { CheckboxSizes } from "./checkbox-group/checkbox-group.component"; interface StyledCheckboxProps { $isDisabled?: boolean; $size: CheckboxSizes; $error?: boolean; $checked?: boolean; $indeterminate?: boolean; $isInGroup?: boolean; } export declare const StyledCheckbox: import("styled-components").StyledComponent<"div", any, { theme: object; } & StyledCheckboxProps, "theme">; export declare const StyledCheckboxContentWrapper: import("styled-components").StyledComponent<"div", any, { $size: CheckboxSizes; }, never>; export {};