import type { DirectiveHandler } from './types'; /** * Function signature used to resolve custom directives without coupling the * view pipeline directly to the plugin module. * @internal */ export type CustomDirectiveResolver = (name: string) => DirectiveHandler | undefined; /** * Registers the resolver used by the view pipeline for custom directives. * * Pass `null` to unregister the current resolver and reset to the default behavior. * @internal */ export declare const registerCustomDirectiveResolver: (resolver: CustomDirectiveResolver | null) => void; /** * Returns a custom directive handler when one is registered. * @internal */ export declare const getCustomDirective: (name: string) => DirectiveHandler | undefined; //# sourceMappingURL=custom-directives.d.ts.map