export interface PrintReceiptParams { nativePrint: (params: any, callback?: (result: any) => void) => void; orderId: string | number; machineCodePrintInfo?: any; smallTicketData?: any; machineCodePrintInfoV2?: any; logger?: any; dedupeWindowMs?: number; } export declare function printReceipt({ nativePrint, orderId, machineCodePrintInfo, smallTicketData, machineCodePrintInfoV2, logger, dedupeWindowMs, }: PrintReceiptParams): boolean;