import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { Modal as ModalElement, ModalProperties } from '@watching/clips/elements'; export interface ModalProps extends PropsWithChildren, 'padding'>> { ref?: ForwardedRef; padding?: ModalProperties['padding'] | boolean; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-modal': ModalProps; } } } export declare const Modal: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=Modal.d.ts.map