type useModalProps = { /** * Initial state of the modal */ defaultVisible?: boolean; }; export declare const useModal: ({ defaultVisible }?: useModalProps) => { visible: boolean; showModal: () => void; closeModal: () => void; }; export {};