export type GetWorkspacePathProps = {
    add?: string;
};
export default function getWorkspacePath(props: GetWorkspacePathProps): GetWorkspacePathReturn;
export type GetWorkspacePathReturn = {
    path: string;
    getFileUri(): string;
    getExtension(): string;
    hasExtension(ext: string): boolean;
    addFile(dir: string): void;
};
