export declare class TransactionErrorScreen {
    container: HTMLDivElement;
    currency: string;
    maxAmount: string;
    constructor(container: HTMLDivElement);
    setLimitInfo(currency: string, amount: number | string): void;
    renderContent(actionLink?: string): void;
    render(): string;
}
