This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
front/node_modules/@mui/utils/generateUtilityClass/generateUtilityClass.d.ts
2024-09-18 13:34:19 -03:00

18 lines
548 B
TypeScript

export type GlobalStateSlot = keyof typeof globalStateClasses;
export declare const globalStateClasses: {
active: string;
checked: string;
completed: string;
disabled: string;
error: string;
expanded: string;
focused: string;
focusVisible: string;
open: string;
readOnly: string;
required: string;
selected: string;
};
export default function generateUtilityClass(componentName: string, slot: string, globalStatePrefix?: string): string;
export declare function isGlobalState(slot: string): boolean;