export default RnboOutport;
type RnboOutport = {
    $on?(type: string, callback: (e: any) => void): () => void;
    $set?(props: Partial<Props & {
        [key: string]: any;
    }>): void;
};
declare const RnboOutport: import("svelte").Component<{
    outport: import("@rnbo/js").MessageInfo;
    device: import("@rnbo/js").Device;
    min?: number;
    max?: number;
} & {
    [key: string]: any;
}, {}, "">;
type Props = {
    outport: import("@rnbo/js").MessageInfo;
    device: import("@rnbo/js").Device;
    min?: number;
    max?: number;
};
