import { FCC } from '@lomray/client-helpers/interfaces'; import { IBottomHalfContainer } from "./index.container.js"; interface IBottomHalf extends Omit { isVisible: boolean; id?: string; deps?: boolean | string | Record; } /** * Modal bottom half * @constructor */ declare const BottomHalf: FCC; export { BottomHalf as default, IBottomHalf };