import * as React from "react"; import { TextProps } from "../Text"; import { IconProps } from "../IconBase"; export interface TagToggleProps extends TextProps { id?: string; name?: string; label?: string; value?: boolean | string; defaultValue?: boolean | string; disabled?: boolean; size?: "lg" | "md" | "sm"; activeIconName?: never; inactiveIconName?: string; activeIcon?: React.ComponentType; inactiveIcon?: React.ComponentType; selectedBackgroundColor?: "accentHighest" | "faint"; } /** * The Tag Toggle is used for showing a list of tags or topics where a user can select many. */ declare class TagToggle extends React.Component { constructor(props: any); handleOnChange: () => void; render(): JSX.Element; } export default TagToggle;