import PageFormContainer from './PageFormContainer';
import { Field, Section } from './sub';
declare type PageFormComponent = typeof PageFormContainer & {
    Section: typeof Section;
    Field: typeof Field;
};
declare const PageForm: PageFormComponent;
export default PageForm;
