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