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