import type { DatabricksVolumeAccessor } from '../../accessor/databricks_volume.ts'; export type DbxEndpoint = 'files' | 'directories'; export interface DbxFetchOptions { query?: Record; headers?: Record; body?: Uint8Array | string; } export declare function encodeRemotePath(remotePath: string): string; export declare function dbxUrl(accessor: DatabricksVolumeAccessor, endpoint: DbxEndpoint, remotePath: string, query?: Record): string; export declare function dbxFetch(accessor: DatabricksVolumeAccessor, method: string, endpoint: DbxEndpoint, remotePath: string, options?: DbxFetchOptions): Promise; //# sourceMappingURL=client.d.ts.map