/** * fetchDataFromStorageCmd returns a node command to fetch a file from * a storage bucket. All strings have to be wrapped in ". */ export declare function fetchDataFromStorageCmd(bucket: string, file: string): string; /** * resolveReference resolves a given skm-lit reference into bucket, object * and an optional filepath values. */ export declare function resolveReference(ref: string): { bucket: string; object: string; filepath?: string; }; export { }