/** * Finix API */ /** * Configure how the `Processor` handles transaction details, specifc to the processor. */ export declare class ProcessorConfig { /** * Details if the `Application` can debit bank accounts using the `Processor`. */ 'canDebitBankAccount'?: boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }