import { SystemProps } from "../../../lib"; export declare type status = 'default' | 'success' | 'warning' | 'error'; export interface StatusMessageProps extends SystemProps { status: status | Boolean; type?: 'polite' | 'assertive'; children: string; } export declare const StatusMessage: ({ status, type, children, ...props }: StatusMessageProps) => JSX.Element;