// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IColorPickerProps { label?: string; color: any; swatches?: string[]; allowAddingToSwatches?: boolean; showClearButton: boolean; defaultColor?: string; styles?: React.CSSProperties; labelStyle?: React.CSSProperties; darkMode?: boolean; borderRadius?: number; saveOnCloseOnly?: boolean; inTeams?: boolean; isMobile?: boolean; disabled?: boolean; toolTip?: JSX.Element; displayInline?: boolean; showOpacity?: boolean; onChange: (color: string) => void; addSwatch?: (color: string) => void; removeColor?: () => void; forcePopupLeftPosition?: number; } export interface IColorPickerState { showColorPicker: boolean; color: any; hex: string; showPicker: boolean; pickerPositionTop?: number; pickerPositionLeft?: number; opacity: number; } export class IAColorPicker extends React.Component { constructor(props: IColorPickerProps); componentWillReceiveProps(props: IColorPickerProps): void; render(): JSX.Element; }