/// <reference types="angular" />
import * as angular from 'angular';
import IScope = angular.IScope;
export interface IOptionScope extends IScope {
    selectValue: Function;
    ngValue: any;
    value: any;
    modelVaule: any;
}
export declare class StfSelectOptionDirective {
    transclude: any;
    restrict: any;
    template: string;
    scope: any;
    link(scope: IOptionScope, element: any, attrs: any): void;
    static Factory(): StfSelectOptionDirective;
}
