import type { DeclComponent } from "../../../ir/decl/frontend.raw.schema.js"; export type MacroExpander = (props: any, original: DeclComponent) => DeclComponent[]; export declare function registerMacro(name: string, expander: MacroExpander): void; export declare function getMacro(name: string): MacroExpander | undefined; export declare function listMacros(): string[];