export type GetBackupClientShardParams = { httpUrl: string; waypointToken: string; }; export type GetBackupClientShardResult = { key: string; updatedAt: string; }; export declare const getBackupClientShard: (params: GetBackupClientShardParams) => Promise;