import { z } from 'zod';
export declare const EncryptedMetadataSchema: z.ZodObject<{
    encryptedMetadata: z.ZodString;
}, "strip", z.ZodTypeAny, {
    encryptedMetadata: string;
}, {
    encryptedMetadata: string;
}>;
export declare const N8NOAuth2ExtractorMetadataSchema: z.ZodObject<{
    authToken: z.ZodString;
    resource: z.ZodString;
}, "strip", z.ZodTypeAny, {
    authToken: string;
    resource: string;
}, {
    authToken: string;
    resource: string;
}>;
export type EncryptedMetadata = z.infer<typeof EncryptedMetadataSchema>;
export type N8NOAuth2ExtractorMetadata = z.infer<typeof N8NOAuth2ExtractorMetadataSchema>;
