import { GateDeviceBox } from "@opendaw/studio-boxes"; import { UUID } from "@opendaw/lib-std"; import { Address, BooleanField, Int32Field, PointerField, StringField } from "@opendaw/lib-box"; import { Pointers } from "@opendaw/studio-enums"; import { AudioEffectDeviceAdapter, DeviceHost } from "../../DeviceAdapter"; import { LabeledAudioOutput } from "../../LabeledAudioOutputsOwner"; import { BoxAdaptersContext } from "../../BoxAdaptersContext"; import { AudioUnitBoxAdapter } from "../../audio-unit/AudioUnitBoxAdapter"; export declare class GateDeviceBoxAdapter implements AudioEffectDeviceAdapter { #private; readonly type = "audio-effect"; readonly accepts = "audio"; readonly manualUrl = "manuals/devices/audio/gate"; readonly namedParameter: { readonly inverse: import("../..").AutomatableParameterFieldAdapter; readonly threshold: import("../..").AutomatableParameterFieldAdapter; readonly return: import("../..").AutomatableParameterFieldAdapter; readonly attack: import("../..").AutomatableParameterFieldAdapter; readonly hold: import("../..").AutomatableParameterFieldAdapter; readonly release: import("../..").AutomatableParameterFieldAdapter; readonly floor: import("../..").AutomatableParameterFieldAdapter; }; constructor(context: BoxAdaptersContext, box: GateDeviceBox); get box(): GateDeviceBox; get uuid(): UUID.Bytes; get address(): Address; get indexField(): Int32Field; get labelField(): StringField; get enabledField(): BooleanField; get minimizedField(): BooleanField; get host(): PointerField; get sideChain(): PointerField; deviceHost(): DeviceHost; audioUnitBoxAdapter(): AudioUnitBoxAdapter; labeledAudioOutputs(): Iterable; terminate(): void; } //# sourceMappingURL=GateDeviceBoxAdapter.d.ts.map