import { WebpackPrerenderSPAOptions } from './Options';
import { Compiler, Compilation } from 'webpack';
export default class WebpackPrerenderSPAPlugin {
    private readonly options;
    constructor(options?: WebpackPrerenderSPAOptions);
    prerender(compiler: Compiler, compilation: Compilation, alreadyRenderedRoutes?: Array<string>): Promise<false | undefined>;
    apply(compiler: Compiler): void;
}
