interface SwitchButtonTheme { labelColor?: string; userSelect?: string; } export type StyleProps = { disabled?: boolean; customStyle?: SwitchButtonTheme; switchSize?: 'large' | 'medium' | 'small'; }; declare const StyledSwitchButtonWrapper: import("styled-components").StyledComponent<"div", any, StyleProps, never>; declare const StyledSwitchButtonLabel: import("styled-components").StyledComponent<"label", any, StyleProps, never>; declare const StyledSwitchButton: import("styled-components").StyledComponent<"input", any, StyleProps, never>; export { StyledSwitchButtonWrapper, StyledSwitchButtonLabel, StyledSwitchButton };