Files

7 lines
284 B
TypeScript

import * as React from 'react';
export interface StyledEngineProviderProps {
children?: React.ReactNode;
enableCssLayer?: boolean | undefined;
injectFirst?: boolean | undefined;
}
export default function StyledEngineProvider(props: StyledEngineProviderProps): React.JSX.Element;