export declare class DeclineOptions {
    private _declineOnAllDevices;
    constructor(_declineOnAllDevices: boolean);
    get declineOnAllDevices(): boolean;
    static builder(): DeclineOptionsBuilder;
}
declare class DeclineOptionsBuilder {
    private _declineOnAllDevices;
    setDeclineOnAllDevices(_declineOnAllDevices: boolean): DeclineOptionsBuilder;
    build(): DeclineOptions;
}
export {};
