import { ClassNameMap, PropsOfStyles, Styles, WithStylesOptions, } from '@material-ui/styles/withStyles'; import { Omit } from '@material-ui/types'; import { DefaultTheme } from '../defaultTheme'; 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;