import * as React from 'react'; import { IgrPropertyUpdatedEventArgs } from "igniteui-react-core"; import { ColorScale } from "./ColorScale"; import { ContentChildrenManager } from "igniteui-react-core"; /** * Base class for classes which provide colors corresponding to numeric values within a known list of numeric values. */ export declare abstract class IgrColorScale
extends React.Component
{
protected createImplementation(): ColorScale;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): ColorScale; /**
* @hidden
*/
static _createFromInternal(internal: any): IgrColorScale;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor(props: P);
componentDidMount(): void;
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
render(): any;
findByName(name: string): any;
protected __p: string;
protected _hasUserValues: Set