/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** The Split Options Request */ export interface CreateSplitOptionsRequest { /** Liable options */ liable?: boolean; /** Charge processing fee */ chargeProcessingFee?: boolean; chargeRemainderFee?: boolean; } export declare const createSplitOptionsRequestSchema: Schema;