import { WebPlugin } from '@capacitor/core';
import type { MutePlugin, MuteResponse } from './definitions';
export declare class MuteWeb extends WebPlugin implements MutePlugin {
    isMuted(): Promise<MuteResponse>;
    getPluginVersion(): Promise<{
        version: string;
    }>;
}
