import React from 'react'; interface AlertProps { header: string; messages: string[]; closeable?: boolean; action?: { label: string; onAction: () => void; }; } export declare const Alert: React.FC; export {}; //# sourceMappingURL=index.d.ts.map