import type { Action, Params, Pathname } from '../types.ts';
interface StaticDirectoryOptions {
    location: Pathname;
    index?: string[];
    contentTypes?: Params;
}
export declare function staticDirectory(options: StaticDirectoryOptions): Action;
export {};
