/// /** @module @airtable/blocks/ui/system: Typography */ /** */ import { Config } from '@styled-system/core'; import { FontStyleProperty } from '../utils/csstype'; import { OptionalResponsiveProp } from '../utils/types'; /** */ export interface FontStyleProps { /** Sets whether a font should be styled with a normal, italic, or oblique face. */ fontStyle?: OptionalResponsiveProp; } export declare const config: Config; export declare const fontStyle: import("@styled-system/core").styleFn; export declare const fontStylePropTypes: import("../../../private_utils").ObjectMap>;