import { ISectionInfo, Template } from "../core/generics"; export declare enum BootstrapInputStyle { Default = "default", Placeholder = "placeholder", Floating = "floating" } export declare enum BootstrapToggleStyle { Checkbox = "checkbox", Switch = "switch" } export declare enum BootstrapSelectionStyle { RadioGroup = "radio", Dropdown = "dropdown" } export declare class BootstrapTemplate extends Template { getAttachmentsTemplate(dict?: any): string; getInputTemplate(dict?: any): string; getSelectionTemplate(dict?: any): string; getSections(sections: Record, dict: any): Record; private static readonly selectionTemplate; private static readonly inputTemplate; }