UNPKG

carbon-react

Version:

A library of reusable React components for easily building user interfaces.

15 lines (14 loc) 701 B
type StyledSplitButtonToggleProps = { buttonType: "primary" | "secondary"; disabled: boolean; displayed: boolean; size: "small" | "medium" | "large"; isWhite?: boolean; }; declare const StyledSplitButtonToggle: import("styled-components").StyledComponent<"button", any, { theme: object; } & import("styled-system").SpaceProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> & Omit<import("../button").ButtonProps, "buttonType"> & { iconOnly?: boolean; buttonType: Required<import("../button").ButtonProps>["buttonType"]; } & StyledSplitButtonToggleProps, "theme">; export default StyledSplitButtonToggle;