import { QuoteRequestInterface } from './quote-request.interface'; export interface SwapRequestInterface extends Omit { id: string; enableChecks?: boolean; fromAddress: string; receiver: string | undefined; signature?: string; publicKey?: string; refundAddress?: string; }