import { type DevToolsServerContext, type ConnectedBuilder, type ValidatedBuilder, type SPACE_KIND_VALUES } from "../types";
export declare function connectBuilder(ctx: DevToolsServerContext, publicApiKey: string, privateAuthKey: string, kind: SPACE_KIND_VALUES): Promise<ConnectedBuilder | {
    success: boolean;
    pathname: string;
}>;
export declare function validateBuilder(ctx: DevToolsServerContext): Promise<ValidatedBuilder>;
