import { RemotePrivatePublicationsClient } from "./remote-private-publications.js"; import type { RemoteWorkspaceContext } from "./remote-workspace-selection.js"; /** Capture host profile before fresh verification. Neither the session nor a * signed upload capability is written to the host's credentials. */ export declare function privatePublicationSession(email: string, code: string, requested?: RemoteWorkspaceContext): Promise; export declare function privatePublicationCustomerError(error: unknown): { error: string; code: string; uncertain: boolean; };