import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * A permission that the application requests on another account. */ export declare const ApplicationScope: { readonly AccountsRead: "accounts.read"; readonly AccountsWrite: "accounts.write"; readonly AnalyticsRead: "analytics.read"; readonly ApplePayMerchantRead: "apple-pay-merchant.read"; readonly ApplePayMerchantWrite: "apple-pay-merchant.write"; readonly ApplePayRead: "apple-pay.read"; readonly ApplePayWrite: "apple-pay.write"; readonly BankAccountsRead: "bank-accounts.read"; readonly BankAccountsWrite: "bank-accounts.write"; readonly CapabilitiesRead: "capabilities.read"; readonly CapabilitiesWrite: "capabilities.write"; readonly CardsRead: "cards.read"; readonly CardsWrite: "cards.write"; readonly DocumentsRead: "documents.read"; readonly DocumentsWrite: "documents.write"; readonly FedRead: "fed.read"; readonly FilesRead: "files.read"; readonly FilesWrite: "files.write"; readonly IssuedCardsRead: "issued-cards.read"; readonly IssuedCardsWrite: "issued-cards.write"; readonly IssuedCardsReadSecure: "issued-cards.read-secure"; readonly PaymentMethodsRead: "payment-methods.read"; readonly PingRead: "ping.read"; readonly ProfileEnrichmentRead: "profile-enrichment.read"; readonly ProfileRead: "profile.read"; readonly ProfileWrite: "profile.write"; readonly ProfileDisconnect: "profile.disconnect"; readonly RepresentativesRead: "representatives.read"; readonly RepresentativesWrite: "representatives.write"; readonly TransfersRead: "transfers.read"; readonly TransfersWrite: "transfers.write"; readonly WalletsRead: "wallets.read"; }; /** * A permission that the application requests on another account. */ export type ApplicationScope = ClosedEnum; /** @internal */ export declare const ApplicationScope$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ApplicationScope$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=applicationscope.d.ts.map