import React, { PropsWithChildren } from 'react'; import { AlertProps } from './types'; declare const Alert: ({ dismissible, important, mode, children, className, style, customIcon, ...props }: AlertProps) => React.JSX.Element; export declare const AlertTitle: ({ className, children }: { className?: string | undefined; } & { children?: React.ReactNode; }) => React.JSX.Element; export declare const AlertText: ({ className, children }: { className?: string | undefined; children: any; }) => React.JSX.Element; export declare const AlertLink: ({ className, children, href }: { className?: string | undefined; href?: string | undefined; } & { children?: React.ReactNode; }) => React.JSX.Element; export default Alert;