import * as components from './lib/components'; export declare function textbox(options?: components.TextboxOptions): { name: "textbox"; options: components.TextboxOptions; }; export declare function dropdown(options: components.DropdownOptions): { name: "dropdown"; options: components.DropdownOptions; }; export declare function checkbox(): { name: "checkbox"; options: {}; };