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