/// /** @module @airtable/blocks/ui/system: Flex item */ /** */ import { Config } from '@styled-system/core'; import { AlignSelfProperty } from '../utils/csstype'; import { OptionalResponsiveProp } from '../utils/types'; /** */ export interface AlignSelfProps { /** Aligns flex items of the current flex line, overriding the `alignItems` value. */ alignSelf?: OptionalResponsiveProp; } export declare const config: Config; export declare const alignSelf: import("@styled-system/core").styleFn; export declare const alignSelfPropTypes: import("../../../private_utils").ObjectMap>;