interface StyledButtonToggleProps { disabled?: boolean; $size: "extraSmall" | "small" | "medium" | "large"; $active?: boolean; $iconOnly?: boolean; $fullWidth?: boolean; } declare const StyledButtonToggle: import("styled-components").StyledComponent<"button", any, { theme: object; } & StyledButtonToggleProps, "theme">; export default StyledButtonToggle;