import { ChipProps } from '../Chip';
export type ChipAlertProps = {
/**
* Component contents
*/
children?: ChipProps['children'];
/**
* Defines colour variant
*/
state: 'info' | 'caution' | 'warning' | 'error' | 'success' | 'pending';
prefix?: ChipProps['prefix'];
suffix?: ChipProps['suffix'];
onClick?: ChipProps['onClick'];
onDelete?: ChipProps['onDelete'];
type?: ChipProps['type'];
disabled?: ChipProps['disabled'];
className?: ChipProps['className'];
testId?: ChipProps['testId'];
};
/**
* @deprecated Use `` component
*/
export declare const ChipAlert: import("react").ForwardRefExoticComponent>;
//# sourceMappingURL=ChipAlert.d.ts.map