import { IAbstractFolderStructureEntity, FolderStructureEntityProps } from '../../../ioc';
export declare class FolderStructureEntityModel implements IAbstractFolderStructureEntity {
    readonly privateName: string;
    readonly name: string;
    readonly defaultPath: string;
    constructor({ privateName, name, defaultPath }: FolderStructureEntityProps);
    create(): Promise<void>;
    read(): Promise<Array<string>>;
    update(): Promise<void>;
    delete(): Promise<void>;
}
