import { Status } from "../../../types/variables.mjs"; import { FC, HTMLAttributes, ReactNode } from "react"; //#region src/components/feedback/alert/alert.d.ts type AlertAction = { label: string; renderItem: (props: { children: ReactNode; }) => ReactNode; }; type Props = { tone: Status; message: string | string[]; action?: AlertAction; onClose?: () => void; closeLabel?: string; } & Omit, 'children' | 'role' | 'className' | 'style'>; declare const Alert: FC; //#endregion export { Alert };