import { z } from 'zod'; export declare enum SecretType { /** * A federated token set is a collection of OAuth tokens from the third-party providers. * Use these tokens to get access to the third-party APIs. */ FederatedTokenSet = "federated_token_set" } export declare const secretTypeGuard: z.ZodNativeEnum; export type BufferLike = Buffer; export declare const bufferLikeGuard: z.ZodType;