import { ApiMethodDeclaration } from '..'; type ParamsData = { id: number; field?: 'phone' | 'phone2' | 'email' | 'all'; }; export type RevealedContactsRO = { phone: string | null; phone2: string | null; email: string | null; }; /** * Раскрыть полные контакты клиента («глазик» в UI). Требует право * `canRevealClientContacts`, на бэке пишется аудит-запись. */ export declare const revealContacts: ApiMethodDeclaration; export {};