/// interface Props { /** * Type of alert to render. Options are 'warning' and 'error'. * @default 'error' */ type: 'warning' | 'error'; /** * ID for associating with the element that it labels. */ id?: string; /** * Alert message; */ children?: string; } declare const Alert: ({ type, id, children }: Props) => JSX.Element; export default Alert;