import type { TAction, TParams, TPathname } from '../../types.ts';
type TStaticDirectoryOptions = {
    location: TPathname;
    index?: string[];
    contentTypes?: TParams;
};
export default function staticDirectory(options: TStaticDirectoryOptions): TAction;
export {};
