import type { Device, StyleType } from '../types'; import type { CB_CONTENT_PROP_KEYS } from './types'; export type CB_CONTENT_PROP_VISIBILITY_SPECS = { CB_CONTENT_PROP_VISIBILITY_SPEC_DESKTOP: boolean; CB_CONTENT_PROP_VISIBILITY_SPEC_MOBILEWEB: boolean; }; export type NAMED_CB_CONTENT_VISIBILITY_PROPS = { name: CB_CONTENT_PROP_KEYS.CB_CONTENT_PROP_VISIBILITY; specs: CB_CONTENT_PROP_VISIBILITY_SPECS; }; declare function parseContentVisibility(namedProps: NAMED_CB_CONTENT_VISIBILITY_PROPS, device: Device): StyleType; export default parseContentVisibility;