/** * Built-in Workflow Format Registration * * Registers the default FlowDrop and Agent Spec format adapters * with the workflow format registry. * * This module is automatically loaded when imported, * ensuring built-in formats are available without user action. */ /** * Register all built-in workflow format adapters. * Safe to call multiple times — will only register once. */ export declare function registerBuiltinFormats(): void; /** * Check if built-in formats have been registered. */ export declare function areBuiltinFormatsRegistered(): boolean; /** * Reset the registration state. * Primarily useful for testing. */ export declare function resetBuiltinFormatRegistration(): void;