UNPKG

556 BTypeScriptView Raw
1import { CreateMUIStyled } from '@mui/system';
2import { Theme } from './createTheme';
3
4export { default as slotShouldForwardProp } from './slotShouldForwardProp';
5export { default as rootShouldForwardProp } from './rootShouldForwardProp';
6
7/**
8 * Custom styled utility that has a default MUI theme.
9 * @param tag HTML tag or component that should serve as base.
10 * @param options Styled options for the created component.
11 * @returns React component that has styles attached to it.
12 */
13declare const styled: CreateMUIStyled<Theme>;
14
15export default styled;