import { type CSSProperties, type ReactNode, type Ref } from 'react'; type ChoiceChipOption = { value: string; label: ReactNode; ariaLabel?: string; disabled?: boolean; }; type ChoiceChipsProps = { options?: readonly ChoiceChipOption[]; value?: readonly string[]; defaultValue?: readonly string[]; onChange?: (value: string[]) => void; name?: string; label?: ReactNode; ariaLabel?: string; accentColor?: string; resetLabel?: ReactNode; showReset?: boolean; disabled?: boolean; className?: string; style?: CSSProperties; ref?: Ref; }; declare const DEFAULT_CHOICE_CHIPS_OPTIONS: { value: string; label: string; }[]; declare const ChoiceChips: ({ options, value: controlledValue, defaultValue, onChange, name, label, ariaLabel, accentColor, resetLabel, showReset, disabled, className, style, ref, }: ChoiceChipsProps) => import("react/jsx-runtime").JSX.Element | null; export { ChoiceChips, DEFAULT_CHOICE_CHIPS_OPTIONS }; export type { ChoiceChipOption, ChoiceChipsProps };