import { TextPropSize } from '@consta/uikit/Text'; import { ReactElement } from 'react'; import { IconSize } from "../../utils/consta"; export declare const sizes: readonly ["2xs", "xs", "s", "m", "l"]; export declare type Size = typeof sizes[number]; export declare const layouts: readonly ["default", "reversed"]; export declare type Layout = typeof layouts[number]; export declare const statuses: readonly ["success", "warning", "error", "system"]; export declare type Status = typeof statuses[number]; export declare const iconsArrowRate: readonly ["up", "down", "auto"]; export declare type IconArrowRate = typeof iconsArrowRate[number]; export declare type IconTitle = (props: { size: IconSize; }) => ReactElement | null; export declare type FormatRate = (value: string) => string; export declare const titleSizes: Record; export declare const iconTitleSizes: Record; export declare const isNegativeRate: (rate: string) => boolean; export declare const replaceRateSign: (rate: string) => string;