import { type ElementType } from 'react'; import { type SpiritTextProps, type TextProps } from '../../types'; export interface TextStyles { classProps: string | null; props: TextProps; } export declare function useTextStyleProps(props: SpiritTextProps): TextStyles;