import * as React from 'react'; export interface FormProps extends React.HTMLProps { horizontal: boolean; inline: boolean; } export declare class Form extends React.Component { static defaultProps: FormProps; constructor(props: FormProps, context: any); render(): JSX.Element; }