ohctechv3/.svn/pristine/d0/d0404a4f341053b1c5360f65a6b46de5d498cbf0.svn-base
2024-10-28 15:03:36 +05:30

7 lines
181 B
Plaintext

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