declare type DevelopType = 'app' | 'component'; export declare type SourceType = 'application' | 'controller' | 'service' | 'validator' | 'resource' | 'middleware'; export declare class Render { private _sourcePath; private _destinationPath; private _developType; private _env; private _templatePath; private _assigns; constructor(); source(sourcePath: SourceType): this; destination(destinationPath: string): this; developType(developType: DevelopType): this; assign(name: string, value: any): this; assign(name: object): this; apply(): void; } export {};