import { WebApplicationSettings } from './WebApplicationSettings'; import { WebContext } from './WebContext'; export interface SendOptions { root?: string; index?: string; maxAge?: number; immutable?: boolean; hidden?: boolean; format?: boolean; extensions?: Array | false; } export declare function send(ctx: WebContext, path: string, opts?: SendOptions): any;