7 lines
No EOL
260 B
TypeScript
7 lines
No EOL
260 B
TypeScript
import * as React from 'react';
|
|
export interface StyledEngineProviderProps {
|
|
children?: React.ReactNode;
|
|
enableCssLayer?: boolean;
|
|
injectFirst?: boolean;
|
|
}
|
|
export default function StyledEngineProvider(props: StyledEngineProviderProps): React.JSX.Element; |