export interface VendorAccountDetailSectionProps { accountNumberOrIbanLabel: string; accountType: string; accountTypeLabel: string; bankAccountNumberOrIban: string; bankName: string; routingNumberOrSwiftCode: string; routingNumberOrSwiftCodeLabel: string; accountName?: string; onDeleteClick: () => void; } export declare const VendorAccountDetailSection: ({ bankAccountNumberOrIban, accountNumberOrIbanLabel, accountTypeLabel, accountType, bankName, routingNumberOrSwiftCode, accountName, routingNumberOrSwiftCodeLabel, onDeleteClick, }: VendorAccountDetailSectionProps) => import("react/jsx-runtime").JSX.Element;