import type { CSSProperties, ComputedRef, InjectionKey, Ref } from 'vue'; import { UseNamespaceReturn } from 'southgisui/es/hooks'; export declare type ModalContext = { ns: UseNamespaceReturn; modalRef: Ref; headerRef: Ref; footerRef: Ref; bodyId: Ref; rendered: Ref; style: ComputedRef; isMax: Ref; isFull: Ref; isMini: Ref; propsHeight?: string | number; }; export declare const ModalContextKey: InjectionKey;