import type { PluginClient } from "./types"; export type VerificationProbeResult = { status: "ok"; message: string; } | { status: "blocked"; message: string; verifyUrl?: string; } | { status: "error"; message: string; }; type ProbeAccount = { refreshToken: string; projectId?: string; managedProjectId?: string; }; export declare function verifyAccountAccess(account: ProbeAccount, client: PluginClient, providerId: string): Promise; export {}; //# sourceMappingURL=verification.d.ts.map