import { type StyledProps } from "./Styled"; /** * moaui Styled Alert * * @param props - title, variant, severity, children * @example * * {children} - set a Alert Message * * @returns React.ReactElement */ declare function Alert(props: StyledProps): import("react/jsx-runtime").JSX.Element; declare const SampleProps: { id: string; children: string; variant: import("../../Common/UnionType").CustomUnionType; severity: import("../../Common/UnionType").CustomUnionType; title: string; }; export default Alert; export { type StyledProps as AlertProps, SampleProps as AlertSample, }; //# sourceMappingURL=index.d.ts.map