///
import { ReadStream } from 'fs';
import { Action } from './Action';
declare type FileProps = {
path: string;
handler: string;
id: string;
};
export declare class File extends Action {
handler: string;
id: string;
constructor({ path, handler, id }: FileProps);
get params(): string;
}
export {};