import * as moment from 'moment'; import { Observable } from 'rxjs'; import { services } from 'typescript-angular-utilities'; import __timezone = services.timezone; export interface ITestItem { value: number; } export interface ITestItem2 { value: string; } export declare class InputsBootstrapper { checked: boolean; text: string; date: moment.Moment; selection: ITestItem; rating: number; time: string; signature: string; disableSignature: boolean; options: ITestItem[]; optionsAsync: Observable; typeaheadOptions: ITestItem2[]; selections: ITestItem2[]; constructor(timezoneService: __timezone.TimezoneService); getOptions: () => Observable; searchOptions: (search: string) => Observable; createOption: (text: string) => any; log(value: any): void; }