@qite/tide-booking-component
Version:
React Booking wizard & Booking product component for Tide
18 lines (17 loc) • 540 B
TypeScript
import React from 'react';
import { BookingPackage, Pax } from '@qite/tide-client/build/types';
interface PrintOfferButtonProps {
bookingPackage?: BookingPackage;
getPax: () => Pax[] | undefined;
tagIds?: number[];
printActionId?: number | null;
onPrinted?: (pdfUrl: string) => void;
labelIdle?: string;
labelCreating?: string;
labelPrinting?: string;
disabled?: boolean;
className?: string;
loader?: React.ReactNode;
}
declare const PrintOfferButton: React.FC<PrintOfferButtonProps>;
export default PrintOfferButton;