export declare const root: string;
export declare const data: string;
export declare const pguser: string;
export declare const pgdata: string;
export declare const pghost: string;
export declare const pgdatabase: string;
export declare const projects: string;
export declare const secrets: string;
export declare const logs: string;
export declare const blobstore: "disk" | "sqlite";
export declare let apiKey: string;
export declare let apiServer: string;
export declare let apiBasePath: string;
export declare function setApi({ key, server, basePath, }: {
    key?: string;
    server?: string;
    basePath?: string;
}): void;
