export declare const mkdir: (path: string) => string;
export declare class FolderManager {
    private readonly outputFolder;
    constructor(outputFolder: string);
    getOutputFolder(): string;
    getServiceFolder(): string;
    getFunctionFolder(): string;
    getInterfaceFolder(): string;
    getEnumerationFolder(): string;
    getReactProviderFolder(): string;
    getConstantServicesFolder(): string;
    getInterfaceComponentsFolder(): string;
    getInterfaceRequestFolder(): string;
    getInterfaceResponseFolder(): string;
    getInterfaceParameterFolder(): string;
}
