@mui/x-license
Version:
MUI X License verification.
16 lines • 402 B
text/typescript
import * as React from 'react';
import { MuiLicenseInfo } from "../utils/licenseInfo.mjs";
/**
* @ignore - do not document.
*/
export interface LicenseInfoProviderProps {
info: MuiLicenseInfo;
children?: React.ReactNode;
}
/**
* @ignore - do not document.
*/
export declare function LicenseInfoProvider({
info,
children
}: LicenseInfoProviderProps): import("react/jsx-runtime").JSX.Element;