import type { CB_STYLE_PROP_TEXT_SPECS } from '../../components/ComponentBlock/componentBlocks/types'; import type { Device, StyleAndHoverStyle } from '../types'; import type { CB_STYLE_PROP_KEYS } from './types'; export type NAMED_CB_STYLE_TEXT_PROPS = { name: CB_STYLE_PROP_KEYS.CB_STYLE_PROP_TEXT; specs: CB_STYLE_PROP_TEXT_SPECS; }; export default function parseStylePropTextSpec(namedProps: NAMED_CB_STYLE_TEXT_PROPS, device: Device): StyleAndHoverStyle;