export type TextBoxOwnProps = { children?: React.ReactNode; mobileSize: number | 'inherit'; desktopSize: number | 'inherit'; lineHeight?: number | string; color?: React.CSSProperties['color']; colorHover?: React.CSSProperties['color']; margin?: React.CSSProperties['margin']; fontWeight?: React.CSSProperties['fontWeight']; fontWeightHover?: React.CSSProperties['fontWeight']; textAlign?: React.CSSProperties['textAlign']; textWrap?: React.CSSProperties['textWrap']; style?: React.CSSProperties; }; type TextBoxProps = TextBoxOwnProps & { tag?: T; } & Omit, keyof TextBoxOwnProps | 'tag'>; export declare const TextBox: { ({ tag, children, className, mobileSize, desktopSize, lineHeight, color, colorHover, margin, fontWeight, fontWeightHover, textAlign, textWrap, style, ...props }: TextBoxProps): import("react").JSX.Element; displayName: string; }; export {};