import { TestCard } from './test-card';

type Props = {
    container: HTMLDivElement;
    testCardContainer: HTMLDivElement;
};
export declare class MainFooter {
    container: HTMLDivElement;
    testCardContainer: HTMLDivElement;
    testCardInstance: TestCard | null;
    isVisible: boolean;
    constructor({ container, testCardContainer }: Props);
    attachListener(): void;
    renderComponent(): void;
    render(): string;
}
export {};
