import { z } from 'zod'; import { SecurityScheme } from '../types/apps'; export declare const LinkedAccountsSchema: { link: z.ZodObject<{ app_name: z.ZodString; linked_account_owner_id: z.ZodString; security_scheme: z.ZodNativeEnum; api_key: z.ZodOptional; after_oauth2_link_redirect_url: z.ZodOptional; }, "strip", z.ZodTypeAny, { app_name: string; security_scheme: SecurityScheme; linked_account_owner_id: string; api_key?: string | undefined; after_oauth2_link_redirect_url?: string | undefined; }, { app_name: string; security_scheme: SecurityScheme; linked_account_owner_id: string; api_key?: string | undefined; after_oauth2_link_redirect_url?: string | undefined; }>; list: z.ZodObject<{ app_name: z.ZodOptional; linked_account_owner_id: z.ZodOptional; }, "strip", z.ZodTypeAny, { app_name?: string | undefined; linked_account_owner_id?: string | undefined; }, { app_name?: string | undefined; linked_account_owner_id?: string | undefined; }>; };