import React from "react"; import { Palette, PaletteColor } from "@material-ui/core/styles/createPalette"; import { StyleRulesCallback, WithStyles } from "./Styles"; interface ColorSwatchSquareProps extends WithStyles { color: keyof Palette["scrunch"]; shade?: keyof PaletteColor; title: string; variant?: "small"; theme?: any; } declare const styles: StyleRulesCallback; declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;