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