import { AnyFunction } from '../../utils';
type UseSubscribeParams = {
    event: string;
    channel?: string;
    active?: boolean;
};
export declare function useSubscribe({ event, channel, active }: UseSubscribeParams, callback?: AnyFunction, deps?: any[]): any;
export {};
