export declare const customEvents: TaroGeneral.Events;
export declare function useCustomEventsPath(selector?: string): string;
export declare function useCustomEvent(selector: string, cb: any): (<T = any>(args: T) => void)[];
export declare function useParams<T = any>(args: T): {
    params: T;
    setParams: (args: T) => void;
};
