import { WebPlugin } from '@capacitor/core'; import { PhoneCallPlugin } from './definitions'; export declare class PhoneCallWeb extends WebPlugin implements PhoneCallPlugin { constructor(); callNumber(options: { number: string; }): Promise<{ number: string; }>; } declare const PhoneCall: PhoneCallWeb; export { PhoneCall };