import { ReactNode } from 'react'; import { Sentiment } from '../common'; export interface InlineAlertProps { id?: string; type?: `${Sentiment}`; iconLabel?: string; className?: string; children: ReactNode; } /** * @deprecated Use [](https://storybook.wise.design/?path=/docs/prompts-inlineprompt--docs) or [](https://storybook.wise.design/?path=/docs/forms-field--docs) instead. */ export default function InlineAlert({ id, type, iconLabel, className, children, }: InlineAlertProps): import("react").JSX.Element; //# sourceMappingURL=InlineAlert.d.ts.map