/// /** @module @airtable/blocks/ui/system: Typography */ /** */ import { Config } from '@styled-system/core'; import { FontWeightProperty } from '../utils/csstype'; import { OptionalResponsiveProp } from '../utils/types'; /** */ export interface FontWeightProps { /** Specifies the weight (or boldness) of the font. */ fontWeight?: OptionalResponsiveProp; } export declare const config: Config; export declare const fontWeight: import("@styled-system/core").styleFn; export declare const fontWeightPropTypes: import("../../../private_utils").ObjectMap>;