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