mirror of
https://github.com/zoriya/v10.git
synced 2026-08-10 08:08:10 +00:00
12 lines
695 B
TypeScript
12 lines
695 B
TypeScript
import { UIComponentProps } from "../../utils/types.js";
|
|
import { AlertDialogCore } from "@videojs/core";
|
|
//#region src/ui/error-dialog/error-dialog-description.d.ts
|
|
interface ErrorDialogDescriptionProps extends UIComponentProps<'p', AlertDialogCore.State> {}
|
|
declare const ErrorDialogDescription: import("react").ForwardRefExoticComponent<Omit<ErrorDialogDescriptionProps, "ref"> & import("react").RefAttributes<HTMLParagraphElement>>;
|
|
declare namespace ErrorDialogDescription {
|
|
type Props = ErrorDialogDescriptionProps;
|
|
type State = AlertDialogCore.State;
|
|
}
|
|
//#endregion
|
|
export { ErrorDialogDescription, ErrorDialogDescriptionProps };
|
|
//# sourceMappingURL=error-dialog-description.d.ts.map
|