import * as React from "react"; import { RowProps } from "../grid/row"; import { DisplayType } from "."; export interface FormRowProps extends RowProps { /** Determines if the row contains a submit button */ submit?: boolean; /** Passed internally by Form Component */ disabled?: boolean; /** layout can take values from horizontal, vertical and inline. Horizontal is default */ layout?: DisplayType; children: React.ReactElement | React.ReactElement[]; } export declare const FormRow: ({ layout, disabled, children, ...rest }: FormRowProps) => JSX.Element; declare const _default: React.MemoExoticComponent<({ layout, disabled, children, ...rest }: FormRowProps) => JSX.Element>; export default _default;