import { TBaseProps } from '../../types'; declare enum Color { danger = "danger", dark = "dark", info = "info", light = "light", primary = "primary", secondary = "secondary", success = "success", warning = "warning", white = "white" } export declare type StatusTextProps = TBaseProps & { color: Color; text?: string; textPosition: string; }; export {};