interface ContainerProps { /** size */ size?: 'regular' | 'medium' | 'large'; /** Specifies the default value of the checkbox */ checked?: boolean; /** Specifies if the checkbox is disabled or not */ disabled?: boolean; } export declare const Container: import("styled-components").StyledComponent<"div", any, ContainerProps, never>; export declare const Label: import("styled-components").StyledComponent<"label", any, {}, never>; interface CheckmarkProps { /** size */ size?: 'regular' | 'medium' | 'large'; /** Specifies the default value of the checkbox */ checked?: boolean; /** Specifies if the checkbox is disabled or not */ large?: boolean; } export declare const Checkmark: import("styled-components").StyledComponent<"span", any, CheckmarkProps, never>; export declare const StyledInput: import("styled-components").StyledComponent<"input", any, {}, never>; export {};