import * as React from "react"; import { TagToggleProps } from "../TagToggle"; import { ViewProps } from "../View"; export interface TagTogggleGroupProps extends ViewProps { options: TagToggleProps[]; value?: string[]; selectedBackgroundColor?: "accentHighest" | "faint"; } interface State { value: string[]; } declare class TagTogggleGroup extends React.PureComponent { static defaultProps: { options: any[]; }; constructor(props: TagTogggleGroupProps); onChange(evt: any): void; renderTagToggle(option: TagToggleProps, index: number): JSX.Element; render(): JSX.Element; } export default TagTogggleGroup;