2026-03-09 06:28:03 +00:00

6 lines
190 B
TypeScript

import * as React from 'react';
interface DialogContextValue {
titleId?: string | undefined;
}
declare const DialogContext: React.Context<DialogContextValue>;
export default DialogContext;