///
import { ExternalStyles, Theme } from '../../styles';
import { Icons } from '../Icon';
export type StatusType = 'info' | 'success' | 'warning' | 'danger';
export interface StatusProps {
type: StatusType;
text: string;
icon?: Icons;
style?: ExternalStyles;
}
export declare function Status(props: StatusProps): JSX.Element;
export declare const createTypesStyles: (theme: Theme) => Record;