import * as React from 'react'; import { RouteComponentProps } from 'react-router'; import { OrgAreaPageProps } from '../area/OrgArea'; interface Props extends OrgAreaPageProps, RouteComponentProps<{}> { } interface State { displayName: string; loading: boolean; updated: boolean; error?: string; } /** * The organization profile page. */ export declare class OrgAccountProfilePage extends React.PureComponent { private orgChanges; private submits; private subscriptions; constructor(props: Props); componentDidMount(): void; componentWillReceiveProps(props: Props): void; componentWillUnmount(): void; render(): JSX.Element | null; private onDisplayNameFieldChange; private onSubmit; } export {}; //# sourceMappingURL=OrgAccountProfilePage.d.ts.map