interface Props { amount: string; companyName: string; isInvoiceAttached: boolean; paymentDate: string; paymentType: string; containerWidth?: string; vendor?: string; onClose: () => void; } export default function VendorEmailPreview(props: Props): import("react/jsx-runtime").JSX.Element; export {};