import { PropsWithChildren } from 'react'; export interface AlertProps { message?: string | any | string[]; type?: string; } export declare function Alert({ children, message, type }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;