import { Configuration } from 'webpack';
export interface EntryOptions {
    pattern?: string;
    context?: string;
    exclude?: RegExp;
    entryName?: (name: string, extension: string) => string;
}
export declare function pages(options?: EntryOptions): Required<Pick<Configuration, 'context' | 'entry'>>;
