/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { ServiceCharge } from './ServiceCharge';
/**
 * Optional service charges or gratuity tip applied to the order.
 * @export
 * @interface ServiceCharges
 */
export interface ServiceCharges extends Array<ServiceCharge> {
}
export declare function ServiceChargesFromJSON(json: any): ServiceCharges;
export declare function ServiceChargesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServiceCharges;
export declare function ServiceChargesToJSON(value?: ServiceCharges | null): any;
