///
import * as uui from '@epam/uui';
interface TextMods extends Pick {
/**
* Defines component color.
* @default 'gray80'
*/
color?: 'blue' | 'green' | 'amber' | 'red' | 'white' | 'gray5' | 'gray50' | 'gray60' | 'gray80' | 'gray90' | uui.TextProps['color'];
}
/** Represents the properties of a Text component. */
export interface TextProps extends uui.TextCoreProps, TextMods {
}
export declare const Text: (props: TextProps & import("react").RefAttributes) => import("react").ReactElement>;
export {};
//# sourceMappingURL=Text.d.ts.map