import { FunctionComponent, HTMLAttributes } from 'react'; /** * @prop {boolean} [inline] display form elements inline */ export interface FormProps extends HTMLAttributes { inline?: boolean; } /** * Extends `
` with Avaya NEO styling. * @param {FormProps} props * @param {boolean} [props.inline] display form elements inline * * @example * * * @example *
* * @see https://design.avayacloud.com/components/web/form-layout-web */ export declare const Form: FunctionComponent;