import React from 'react'; declare type StatusMessageTypes = 'success' | 'danger' | 'primary' | 'info' | 'institutional'; export interface StatusMessageProps { type: StatusMessageTypes; title: string; text: string | string[]; list?: string[]; isTwoButtons?: boolean; } export declare const StatusMessage: (props: React.PropsWithChildren) => JSX.Element; export {};