/// <reference types="react" />
import { React } from '../common';
import { NextDocumentContext } from 'next/document';
export interface IPageProps {
    id: string;
    path: string;
    q: string;
}
export default class Page extends React.PureComponent<IPageProps> {
    static getInitialProps(ctx: NextDocumentContext): {
        path: string;
        id: string | string[] | undefined;
        q: string | string[] | undefined;
    };
    componentDidMount(): void;
    render(): JSX.Element;
}
