import { FC } from 'react'; import { STATUS_TYPE } from './StatusText.enums'; declare type Props = { className?: string; type: STATUS_TYPE; }; export declare const StatusText: FC; export {};