/// /** @module @airtable/blocks/ui/system: Typography */ /** */ import { Config } from '@styled-system/core'; import { FontSizeProperty } from '../utils/csstype'; import { OptionalResponsiveProp, Length } from '../utils/types'; /** */ export interface FontSizeProps { /** Sets the size of the font. This property is also used to compute the size of `em`, `ex`, and other relative length units. */ fontSize?: OptionalResponsiveProp>; } export declare const config: Config; export declare const fontSize: import("@styled-system/core").styleFn; export declare const fontSizePropTypes: import("../../../private_utils").ObjectMap>;