import { ComponentClass } from 'misstime'; import { MountLifecycleCallback, UpdateLifecycleCallback, UnmountLifecycleCallback } from '../utils/types'; export declare const onInited: (hook: () => void) => void; export declare const onBeforeMount: (hook: MountLifecycleCallback) => void; export declare const onMounted: (hook: MountLifecycleCallback) => void; export declare const onBeforeUpdate: (hook: UpdateLifecycleCallback) => void; export declare const onUpdated: (hook: UpdateLifecycleCallback) => void; export declare const onBeforeUnmount: (hook: UnmountLifecycleCallback) => void; export declare const onUnmounted: (hook: UnmountLifecycleCallback) => void;