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