export declare const AudioStreamProps: {
    avatar: {
        type: StringConstructor;
    };
    username: {
        type: StringConstructor;
    };
    isVideoAvailable: {
        type: BooleanConstructor;
    };
    showStreamInfo: {
        type: BooleanConstructor;
    };
    isSmallWindow: {
        type: BooleanConstructor;
        default: boolean;
    };
    isMuted: {
        type: BooleanConstructor;
        default: boolean;
    };
    volume: {
        type: NumberConstructor;
        default: number;
    };
};
