import * as React from 'react'; import { RouteComponentProps } from 'react-router'; import * as GQL from '../backend/graphqlschema'; export interface SurveyResponse { score: number; email?: string; reason?: string; better?: string; } interface SurveyPageProps extends RouteComponentProps<{ score?: string; }> { isLightTheme: boolean; user: GQL.IUser | null; } export declare class SurveyPage extends React.Component { constructor(props: SurveyPageProps); componentDidMount(): void; render(): JSX.Element | null; private intScore; private onSubmit; } export {}; //# sourceMappingURL=SurveyPage.d.ts.map