import { DialogCore, DialogState, StateAttrMap } from "@videojs/core"; import { DialogApi } from "@videojs/core/dom"; //#region src/ui/dialog/context.d.ts interface DialogContextValue { state: DialogState; stateAttrMap: StateAttrMap; dialog: DialogApi; popupId: string; popupAttrs: ReturnType; close: () => void; } declare const dialogContext: { __context__: DialogContextValue; }; //#endregion export { DialogContextValue, dialogContext }; //# sourceMappingURL=context.d.ts.map