import type { RequireProps } from '@skypilot/common-types';
export declare type DbRecord<R extends {
[key: string]: any;
}> = RequireProps<DbRecordInput<R>, 'retrievalId'>;
export declare type DbRecordInput<R = {
[key: string]: any;
}> = R & {
retrievalId?: string;
};