import NotFoundController from './NotFoundController';
export default class StaticFileController extends NotFoundController implements ControllerInterface<StaticFileControllerActionParams> {
    protected config: StaticFileControllerCtorConfig;
    constructor(config: StaticFileControllerCtorConfig);
    action({ filepath }: StaticFileControllerActionParams): Promise<{
        code: number;
        headers: {
            'content-type': string;
        };
        body: string;
    }>;
}
//# sourceMappingURL=StaticFileController.d.ts.map