import type { Contract } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type SendSmsOrEmailAuthSystemInput = { contractId: string; ownerIsCompany: boolean; authSystem: { owner_company_phone?: string; owner_phone?: string; owner_yousign_code_reception_method: 'sms' | 'email'; }; }; declare const sendSmsOrEmailAuthSystem: (http: HttpClient) => { query: (input: SendSmsOrEmailAuthSystemInput) => Promise, undefined, ApiError>>; }; export default sendSmsOrEmailAuthSystem;