/// import type { CB_TEXT_PROPERTIES_TYPE, Device, IndexForIntersection } from '../../../../util/types'; import type { CB_STYLE_PROP_TEXT_SPECS, CB_STYLE_PROP_TEXTOPTION } from '../types'; type Props = CB_TEXT_PROPERTIES_TYPE & IndexForIntersection; export default function Text(props: Props): JSX.Element; export declare function getTextStyles(props: CB_STYLE_PROP_TEXT_SPECS, device: Device): { style: import("styled-components").CSSProperties; hoverStyle: import("styled-components").CSSProperties; }; export declare function getTextOptionStyles(props: CB_STYLE_PROP_TEXTOPTION, device: Device): { style: import("styled-components").CSSProperties; hoverStyle: import("styled-components").CSSProperties; } | { style: { overflowY: string; }; }; export {};