import React from 'react'; import { AlertType } from '../utils'; export declare const alertTypes: AlertType[]; export declare const alertHighlight: AlertType[]; export declare const alertLink: AlertType[]; interface AlertProps { arrayAlerts: AlertType[]; isDismissible?: boolean; isListLinks?: boolean; textLink?: string; } export declare const Alert: ({ arrayAlerts, isDismissible }: AlertProps) => JSX.Element; interface ListLinksProps { type: string; text: string; textLink: string; isListLinks: boolean; } export declare const ListLinks: React.FC; export {};