FrontPastel/node_modules/@mui/material/Dialog/DialogContext.d.ts

7 lines
181 B
TypeScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
import * as React from 'react';
interface DialogContextValue {
titleId?: string;
}
declare const DialogContext: React.Context<DialogContextValue>;
export default DialogContext;