import type { GatewayTokenAmount } from './GatewayTokenAmount'; export interface GatewayMaxSpendable { amount: GatewayTokenAmount; userAddress: string; } export declare function instanceOfGatewayMaxSpendable(value: object): value is GatewayMaxSpendable; export declare function GatewayMaxSpendableFromJSON(json: any): GatewayMaxSpendable; export declare function GatewayMaxSpendableFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewayMaxSpendable; export declare function GatewayMaxSpendableToJSON(json: any): GatewayMaxSpendable; export declare function GatewayMaxSpendableToJSONTyped(value?: GatewayMaxSpendable | null, ignoreDiscriminator?: boolean): any;