import { ChipButton, ChipCheckbox, ChipRadio, ChipRemovable } from './chips';
type Chip = {
/**
* Chip.Button used for interaction
*
* @example
* Click me
*/
Button: typeof ChipButton;
/**
* Chip.Checkbox used for multiselection
*
* @example
* Nynorsk
* Bokmål
*/
Checkbox: typeof ChipCheckbox;
/**
* Chip.Radio used for single selection
*
* @example
* Nynorsk
* Bokmål
*/
Radio: typeof ChipRadio;
/**
* Chip.Removable used for interaction
*
* @example
* Click to remove me
*/
Removable: typeof ChipRemovable;
};
declare const ChipComponent: Chip;
export type { ChipButtonProps, ChipCheckboxProps, ChipRadioProps, ChipRemovableProps, } from './chips';
export { ChipButton, ChipCheckbox, ChipComponent as Chip, ChipRadio, ChipRemovable, };
//# sourceMappingURL=index.d.ts.map