import * as H from 'history'; import * as React from 'react'; interface Props { history: H.History; } interface State { /** * Current value of the organization name input */ name: string; displayName: string; /** * Holds any error returned by the remote GraphQL endpoint on failed requests. */ error?: Error; /** * True if the form is currently being submitted */ loading: boolean; } export declare class NewOrganizationPage extends React.Component { private submits; private subscriptions; constructor(props: Props); componentDidMount(): void; render(): JSX.Element | null; private onNameChange; private onDisplayNameChange; private onSubmit; } export {}; //# sourceMappingURL=NewOrganizationPage.d.ts.map