import React from 'react'; export interface ChipGroupProps { /** Allow multiple values to be selected at a time */ multiple?: T; /** Controlled component value */ value?: T extends true ? string[] : string; /** Uncontrolled component initial value */ defaultValue?: T extends true ? string[] : string; /** Called when value changes */ onChange?(value: T extends true ? string[] : string): void; /** components */ children?: React.ReactNode; } export declare function ChipGroup(props: ChipGroupProps): React.JSX.Element; export declare namespace ChipGroup { var displayName: string; } //# sourceMappingURL=ChipGroup.d.ts.map