export declare const buildRelativePath: (fromFolder: string, toFolder: string) => string; export interface Folders { components: string; dtos: string; serviceInterfaces: string; services: string; } export declare class RelativeFoldersDTO implements Folders { readonly components: string; readonly dtos: string; readonly serviceInterfaces: string; readonly services: string; constructor(components?: string, dtos?: string, serviceInterfaces?: string, services?: string); static fromFolder(rootFolder: string, folders: Folders): RelativeFoldersDTO; }