interface Fn<T = any, R = T> {
    (...arg: T[]): R;
}
export declare function onMountedOrActivated(hook: Fn): void;
export {};
