export interface RegistryInvokeParams extends Record { type: string; member: string; args: string; } export interface RegistryRunRequest { target: string; command_args_json: string; allow_raw?: boolean; set?: string; } export declare function build_registry_run_params(request: RegistryRunRequest): RegistryInvokeParams; export declare function build_registry_list_params(query: string, allow_raw?: boolean): RegistryInvokeParams; //# sourceMappingURL=registry-invoke.d.ts.map