///
///
export interface ITokenField extends ng.IScope {
tokenoptions: any;
tokenmethods: any;
static: any;
}
export declare class TokenField implements ng.IDirective {
private $timeout;
constructor($timeout: ng.ITimeoutService);
link: ng.IDirectiveLinkFn;
restrict: string;
scope: {
tokens: string;
tokenfieldid: string;
tokenplaceholder: string;
tokenoptions: string;
tokenmethods: string;
tokenpattern: string;
static: string;
};
template: string;
}
export declare function tokenFieldFactory($timeout: any): TokenField;
export declare namespace tokenFieldFactory {
var $inject: string[];
}