import { ListSize } from './types'; export declare const getAdjustedSize: (size: ListSize) => "small" | "medium"; export declare const getDescriptionMarginTop: (size: ListSize) => "0" | "var(--spacing-1)"; export declare const getDynamicListGap: (size: ListSize) => "var(--spacing-2)" | "var(--spacing-1)"; export declare const getDynamicListPadding: (size: ListSize) => "var(--spacing-2) var(--spacing-3)" | "var(--spacing-2) var(--spacing-2)" | "var(--spacing-3) var(--spacing-4)"; export declare const getFieldSize: (size: ListSize) => "small" | "medium"; export declare const getFont: (size: ListSize) => "var(--body-text-x-small)" | "var(--body-text-small)" | "var(--body-text-medium)"; export declare const getHintIconMargin: (size: ListSize) => "9px" | "5px" | "4px"; export declare const getHintIconSize: (size: ListSize) => 14 | 16 | 18; export declare const getItemIconSize: (size: ListSize) => 16 | 18 | 20; export declare const getItemPadding: (size: ListSize) => string; export declare const getLineHeight: (size: ListSize) => "var(--body-text-line-height-x-small)" | "var(--body-text-line-height-small)" | "var(--body-text-line-height-medium)";