import { ReactChildren, ReactElement, ReactNode } from 'react'; import { AlertType } from '../../../types/alert'; interface SystemAlertProps { title: string; type: AlertType; onClose: () => void; children?: ReactChildren | ReactNode; action?: ReactElement; } export declare const SystemAlert: { ({ title, type, action, children, onClose, }: SystemAlertProps): JSX.Element; Action: import("styled-components").StyledComponent<"div", any, {}, never>; }; export {};