import { FC, ReactNode } from 'react'; export declare const spans12onMobile: (col: any) => boolean; export declare const columnShouldBeFirst: (col: any) => any; export declare const moveFirstToTop: (children: any) => any; export type HeightTypes = 'any' | 'full' | 'responsive' | 'standard'; export type RowProps = { /** Defaults to 'center' if undefined. Supports stretch and center. */ readonly alignItems?: 'center' | 'stretch'; /** A Function Component that accepts any props and will replace the row's div */ /** The row's background color */ /** Props that are passed to the BackgroundComponent */ readonly backgroundComponentProps?: Record; /** The contents of the row */ readonly children: ReactNode; /** data-component attribute value */ readonly dataComponent?: string; /** Whether to show divider lines between columns */ readonly divider?: boolean; /** If multiple rows, determines if the heights of the rows should be equal. Useful for making grid items equal in height. */ readonly equalHeightRows?: boolean; /** Grid gap between columns. Leave empty (undefined) for responsive defaults. Choose 'none' to remove the grid gap. */ readonly gap?: 'none' | 'small' | 'medium' | 'large'; /** The height constraints of the row */ readonly height?: HeightTypes; /** Unique HTML id to pass to the parent div */ readonly id?: string; /** Padding on the inside of the row */ /** Color of the text inside the row */ /** Changes body copy/paragraph size to be either 'xs' (12px), 'sm' (14px), or 'md' (16/18px; the default setting). */ readonly textSize?: 'md' | 'sm' | 'xs'; }; declare const Row: FC; export default Row;