mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
12 lines
575 B
TypeScript
12 lines
575 B
TypeScript
import { UIComponentProps } from "../../utils/types.js";
|
|
import { AlertDialogCore } from "@videojs/core";
|
|
//#region src/ui/alert-dialog/alert-dialog-title.d.ts
|
|
interface AlertDialogTitleProps extends UIComponentProps<'h2', AlertDialogCore.State> {}
|
|
declare const AlertDialogTitle: import("react").ForwardRefExoticComponent<AlertDialogTitleProps>;
|
|
declare namespace AlertDialogTitle {
|
|
type Props = AlertDialogTitleProps;
|
|
type State = AlertDialogCore.State;
|
|
}
|
|
//#endregion
|
|
export { AlertDialogTitle, AlertDialogTitleProps };
|
|
//# sourceMappingURL=alert-dialog-title.d.ts.map
|