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