import { Theme as DefaultTheme } from './createTheme'; import { ClassNameMap, Styles, WithStylesOptions } from '@material-ui/styles/withStyles'; import { Omit } from '@material-ui/types'; export default function makeStyles< Theme = DefaultTheme, Props extends object = {}, ClassKey extends string = string >( styles: Styles, options?: Omit, 'withTheme'> ): keyof Props extends never // `makeStyles` where the passed `styles` do not depend on props ? (props?: any) => ClassNameMap // `makeStyles` where the passed `styles` do depend on props : (props: Props) => ClassNameMap;