import type { TextVariant } from '../components/Text/text-types'; /** Shared public control sizes. Typography is derived; it is not a separate density API. */ export type ControlSize = 'lg' | 'md' | 'sm' | 'xs'; /** Outer-density reduction used when a control is nested inside a same-size frame. */ export type ControlInsetDepth = 'single' | 'double'; /** Complete text variant selected internally by each control size. */ export declare const CONTROL_TEXT_VARIANT: Record; /** Supporting copy paired with each control density in two-line choice rows. */ export declare const CONTROL_SUPPORTING_TEXT_VARIANT: Record;