import type { AcceptCallback, AfterCallback, ContextFactory } from '@roots/wordpress-hmr'; export interface Props { accept: AcceptCallback; after?: AfterCallback; api: { register: (...args: Array) => void; unregister: (...args: Array) => void; }; before?: () => unknown; getContext: ContextFactory; } export declare const setNotify: (value: boolean) => void; export declare const load: ({ accept, after, api, before, getContext }: Props) => void;