/// /** @module @airtable/blocks/ui/system: Typography */ /** */ import { Config } from '@styled-system/core'; import { LineHeightProperty } from '../utils/csstype'; import { OptionalResponsiveProp, Length } from '../utils/types'; /** */ export interface LineHeightProps { /** Sets the amount of space used for lines, such as in text. On block-level elements, it specifies the minimum height of line boxes within the element. On non-replaced inline elements, it specifies the height that is used to calculate line box height. */ lineHeight?: OptionalResponsiveProp>; } export declare const config: Config; export declare const lineHeight: import("@styled-system/core").styleFn; export declare const lineHeightPropTypes: import("../../../private_utils").ObjectMap>;