import { WebPlugin } from '@capacitor/core'; import type { SipLoginOptions, SipOutgoingCallOptions, SipPhoneControlPlugin } from './definitions'; export declare class SipPhoneControlWeb extends WebPlugin implements SipPhoneControlPlugin { initialize(): Promise; login(__: SipLoginOptions): Promise; logout(): Promise; acceptCall(): Promise; call(__: SipOutgoingCallOptions): Promise; hangUp(): Promise; }