// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IColorThemeProps { key?: string; backgroundColor: string; textColor: string; swatches?: string[]; allowAddingToSwatches: boolean; highlightColor: string; darkMode?: boolean; inTeams?: boolean; toolTip?: JSX.Element; disableTextColor?: boolean; setBackgroundColor: (backgroundColor: string) => void; setTextColor: (textColor: string) => void; remove: () => void; addSwatch?: (color: string) => void; } export class IAColorTheme extends React.Component { constructor(props: IColorThemeProps); render(): JSX.Element; }