import type { ComponentRegistry, ConnectedBuilder, GetRegistryOptions, LaunchEditorFile, LoadComponentOptions, LocalConfig, RegisterComponentOptions, SetComponentInfoOptions, SetComponentInputOptions, UnregisterComponentOptions, ValidatedBuilder } from "../types"; export declare const apiConnectBuilder: (publicApiKey: string, privateAuthKey: string, kind: string | null) => Promise; export declare const apiValidateBuilder: () => Promise; export declare const apiLaunchEditor: (file: LaunchEditorFile) => Promise; export declare const apiRegistry: (opts?: GetRegistryOptions) => Promise; export declare const apiLoadComponent: (opts: LoadComponentOptions) => Promise; export declare const apiRegisterComponent: (opts: RegisterComponentOptions) => Promise; export declare const apiSetComponentInfo: (opts: SetComponentInfoOptions) => Promise; export declare const apiSetComponentInput: (opts: SetComponentInputOptions) => Promise; export declare const apiUnregisterComponent: (opts: UnregisterComponentOptions) => Promise; export declare const apiDevToolsEnabled: (enabled: boolean) => Promise; export declare const apiLocalConfig: () => Promise;