import { CommonComponentProps } from "Types/common"; export declare enum CheckboxType { PRIMARY = "PRIMARY", "SECONDARY" = "SECONDARY" } export type CheckboxProps = CommonComponentProps & { label: string; isDefaultChecked?: boolean; onCheckChange?: (isChecked: boolean) => void; info?: string; backgroundColor?: string; fill?: boolean; name?: string; className?: string; type?: CheckboxType; }; export declare const Checkmark: import("styled-components").StyledComponent<"span", any, { disabled?: boolean | undefined; isChecked?: boolean | undefined; info?: string | undefined; backgroundColor?: string | undefined; type?: CheckboxType | undefined; }, never>; export declare const LabelContainer: import("styled-components").StyledComponent<"div", any, { info?: string | undefined; }, never>; declare function Checkbox(props: CheckboxProps): JSX.Element; export default Checkbox;