import { type TextProps as SpectrumTextProps } from '@adobe/react-spectrum'; import type { DOMRefValue } from '@react-types/shared'; import { type ColorValue } from '../theme/colorUtils'; export type TextProps = SpectrumTextProps & { color?: ColorValue; }; /** * A Text component that re-exports the Spectrum Text component. * It overrides ColorValues to accept CSS color strings and custom * variable names from our color paletee and semantic colors. * * @param props The props for the Text component * @returns The Text component * */ export declare const Text: import("react").ForwardRefExoticComponent>>; export default Text; //# sourceMappingURL=Text.d.ts.map