/// /** @module @airtable/blocks/ui/system: Dimensions */ /** */ import { Config } from '@styled-system/core'; import { MaxWidthProperty } from '../utils/csstype'; import { OptionalResponsiveProp, Length } from '../utils/types'; /** */ export interface MaxWidthProps { /** Sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `maxWidth`. */ maxWidth?: OptionalResponsiveProp>; } export declare const config: Config; export declare const maxWidth: import("@styled-system/core").styleFn; export declare const maxWidthPropTypes: import("../../../private_utils").ObjectMap>;