interface Props { action: DialogAction; errorCode: number; transactionDate?: string; } export interface DialogAction { onOkClick: () => void; onRefresh: () => void; } export declare function TransactionUpdatePopup(props: Props): import("react/jsx-runtime").JSX.Element; export declare function getTitleDescrptionButtonText(errorCode: number, transactionDate?: string): { buttonText: string; description: string; title: string; }; export {};