import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BaseGetAuthenticator = { provider: string; /** * The unique name of your authenticator, used to identify it and distinguish it from others. This name must be unique. Attempting to reuse the same name will result in an error. */ name: string; id: string; }; /** @internal */ export declare const BaseGetAuthenticator$inboundSchema: z.ZodType; /** @internal */ export type BaseGetAuthenticator$Outbound = { provider: string; name: string; id: string; }; /** @internal */ export declare const BaseGetAuthenticator$outboundSchema: z.ZodType; export declare function baseGetAuthenticatorToJSON(baseGetAuthenticator: BaseGetAuthenticator): string; export declare function baseGetAuthenticatorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=basegetauthenticator.d.ts.map