/** The capabilities a location might have. */ export declare const LocationCapability: { readonly CreditCardProcessing: "CREDIT_CARD_PROCESSING"; readonly AutomaticTransfers: "AUTOMATIC_TRANSFERS"; readonly UnlinkedRefunds: "UNLINKED_REFUNDS"; }; export type LocationCapability = (typeof LocationCapability)[keyof typeof LocationCapability];