export declare function cvpartnerFetch(endpoint: string, options?: RequestInit): Promise; export declare function ok(data: unknown): { content: { type: "text"; text: string; }[]; }; export interface CVPartnerUser { user_id: string; email: string; name: string; title?: { no?: string; int?: string; }; telephone?: string; office_name?: string; deactivated: boolean; default_cv_id?: string; } export interface CVSearchResult { cv: { user_id: string; name: string; email: string; title?: string; titles?: { no?: string; int?: string; }; telephone?: string; office_id?: string; is_deactivated: boolean; }; highlight?: string; } export declare function resolveCvId(user_id: string, cv_id?: string): Promise;