import { default as React, ReactNode } from 'react'; import { ChipSize } from '@viasat/beam-shared/components/chips'; interface ChipsContextProps { selectedChips: string[]; handleChipChange: (id: string, selected: boolean) => void; multiple: boolean; name?: string; selectable?: boolean; size?: ChipSize; } interface ChipsProviderProps { children: ReactNode; multiple?: boolean; onChange?: (selectedChips: string[]) => void; name?: string; selectable?: boolean; selectedChips?: string[]; size?: ChipSize; } export declare const useChipsContext: () => ChipsContextProps | { selectedChips: null; handleChipChange: null; multiple: null; name: undefined; selectable: null; size: undefined; }; export declare const ChipsProvider: React.FC; export {};