/// import './simple-select.scss'; import { DropdownList } from '../common/dropdown-list'; export interface IScope extends ng.IScope { model: any[]; } export default function directive(): { template: any; require: string[]; restrict: string; transclude: { toggle: string; opt: string; }; scope: { bsOptions: string; onTypeahead: string; readonly: string; placeholder: string; }; link: { pre(scope: IScope, element: any, attrs: any, [ngModel, biOptions]: [any, any], transclude: any): DropdownList; }; };