export declare const LocationEnum: {
    readonly CloudStorage: "cloud_storage";
    readonly Local: "local";
};
export type LocationEnum = typeof LocationEnum[keyof typeof LocationEnum];
