import { CB_ALL_CODES } from '../types'; import type { Device } from '../util/types'; import type { CSSProperties } from 'styled-components'; export declare function parseStyleTextToCSSProp({ availableSpecCodes, props, propKey, device, cbCode }: ParseStyleTextProps): { style: CSSProperties; hoverStyle: CSSProperties; }; type ParseStyleTextProps = { availableSpecCodes: Array; props: T; propKey: 'TEXT'; device: Device; cbCode: CB_ALL_CODES.CB_BTN | CB_ALL_CODES.CB_TEXT; }; export declare function getTextCSSPropKey(key: string, cbName: 'TEXT'): "" | "color" | "letterSpacing" | "fontWeight" | "fontFamily" | "lineHeight" | "fontSize" | "HORIZONTAL" | "alignItems" | "overflowY" | "scrollbarWidth" | "overflow"; export {};