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

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