import { FC, HTMLAttributes } from 'react'; /** * */ export type FormProps = { type?: 'stacked' | 'horizontal' | 'inline' | 'compound'; } & HTMLAttributes; /** * */ export declare const Form: FC;