import { OptionsGroup } from "../builder-section/groupwrapper/criteriagroup/optionsgroup/OptionsGroup";
import { HTMLComponent } from "../HtmlComponent";
export declare class OptionalArrow extends HTMLComponent {
    selected: boolean;
    callBack: (selected: boolean) => void;
    constructor(ParentComponent: OptionsGroup, callBack: (selected: boolean) => void);
    render(): this;
}
