export declare const StreamInfoProps: {
    nickName: {
        type: StringConstructor;
        default: string;
    };
    isSelf: {
        type: BooleanConstructor;
        default: boolean;
    };
    isMuted: {
        type: BooleanConstructor;
        default: boolean;
    };
    volume: {
        type: NumberConstructor;
        default: number;
    };
    showNickName: {
        type: BooleanConstructor;
        default: boolean;
    };
    showControlButton: {
        type: BooleanConstructor;
        default: boolean;
    };
};
