///
declare module UICONTROLS {
/**
* Interface used to specify creation options for color picker
*/
export interface IColorPickerProps {
}
/**
* Class used to create a color picker
*/
export class ColorPicker extends React.Component {
constructor(props: IColorPickerProps);
render(): JSX.Element;
}
}