import { type Component, type ComponentReturnType } from './component';
export declare function createHotReload(component: (comp: ComponentReturnType | Component, args: Record<string, unknown>, ctx: Component<any>) => ComponentReturnType): (oldklass: Component | ComponentReturnType, newKlass: Component | ComponentReturnType) => void;
