type Props = {
    container: HTMLDivElement;
    onClose: () => void;
    onAction: (_val: number) => void;
};
export declare class TransferConfirmationTwo {
    container: HTMLDivElement;
    onClose: () => void;
    onAction: (_val: number) => void;
    constructor(props: Props);
    attachListeners(): void;
    renderComponent(): void;
    render(): string;
}
export {};
