/** * @class * @hidden * @ngdoc controller * @ngname NgeoScaleselectorController */ export function Controller(): void; export class Controller { /** * The set of color * * @type {string[][]} */ colors: string[][]; /** * The selected color * * @type {undefined|string} */ color: undefined | string; /** * @param {string} color The color to select. */ setColor(color: string): void; } export default myModule; /** * @type {angular.IModule} * @hidden */ declare const myModule: angular.IModule; import angular from 'angular';