File size: 190 Bytes
bc20498
 
 
 
 
1
2
3
4
5
6
import type { ModalConfig } from './types.js';
export declare function useModal(node: HTMLElement, config: ModalConfig): {
    update: (config: ModalConfig) => void;
    destroy(): void;
};