import { ToReact } from './helpers.types'; import { ZChip } from '../chip'; export type ZrChip_Props = ToReact<'Chip'>; type ZrChip_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; }; declare const Content: import('react').FC; /** ## ![](https://zds.zurich.com/docs/React.png) `` * * * --- * ### Attributes: * * - `disabled`: _( boolean )_ blocks the interaction with the component. * * --- * ### Examples: * - `default`: * ```html * * ``` * ![example_1](https://zds.zurich.com/docs/atoms/Chip/Chip.png) * * - `disabled`: * ```html * * ``` * ![example_2](https://zds.zurich.com/docs/atoms/Chip/ChipDisabled.png) * * --- * ### References: * - #### [![](https://zds.zurich.com/docs/SB.png) docs](https://zds.zurich.com/atoms/chip) */ declare const Namespace: ZrChip_Type; export { Namespace as ZrChip };