import { HTMLComponent } from "../HtmlComponent";
export declare class AddUserInputBtn extends HTMLComponent {
    callBack: () => void;
    constructor(parentComponent: HTMLComponent, btnText: string, callBack: () => void);
    render(): this;
}
