import { ChainId } from '@ape.swap/apeswap-lists'; export interface PopupProps { timestamp: number; variant: 'success' | 'error'; title: string; description?: string; url?: string; } export declare const usePopups: () => { data: PopupProps[]; addToastError: (errorMessage: string, txHash?: string, chainId?: ChainId) => void; addToastSuccess: (txHash?: string, chainId?: ChainId) => void; removePopup: (popupToRemove: PopupProps) => void; };