import { ResetBtn } from "../buttons/ResetBtn";
import ComponentsList from "./ComponentsList";
import SparnaturalComponent from "../SparnaturalComponent";
import { ISparnaturalSpecification } from "../../spec-providers/ISparnaturalSpecification";
import { HTMLComponent } from "../HtmlComponent";
declare class BgWrapper extends HTMLComponent {
    #private;
    ParentSparnatural: SparnaturalComponent;
    resetBtn: ResetBtn;
    componentsList: ComponentsList;
    specProvider: ISparnaturalSpecification;
    constructor(ParentComponent: SparnaturalComponent, specProvider: ISparnaturalSpecification);
    render(): this;
    resetCallback: () => void;
}
export default BgWrapper;
