/// import { Type } from './styles'; declare type AlertProps = { type: Type; title: string; text?: string; }; export declare function Alert({ type, title, text }: AlertProps): JSX.Element; export {};