import type { IconProps } from '@launchpad-ui/icons'; import type { ComponentProps, ReactElement } from 'react'; type ChipProps = ComponentProps<'span'> & { kind?: 'success' | 'warning' | 'error' | 'info' | 'new' | 'beta' | 'federal'; size?: 'tiny' | 'small'; icon?: Omit, 'size'>; 'data-test-id'?: string; }; /** * @deprecated use `TagGroup` from `@launchpad-ui/components` instead * * https://launchpad.launchdarkly.com/?path=/docs/components-collections-taggroup--docs */ declare const Chip: ({ kind, onClick, onKeyDown, className, children, icon, size, "data-test-id": testId, ...rest }: ChipProps) => import("react/jsx-runtime").JSX.Element; export { Chip }; export type { ChipProps }; //# sourceMappingURL=Chip.d.ts.map