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