import React from 'react'; import { ButtonProps } from '../Button'; export interface ModalProps { active?: boolean; baseClass?: string; className?: string; title?: string; titleColor?: string; titleSize?: string; titleId?: string; showClose?: boolean; autoFocus?: boolean; backdrop?: boolean | 'static'; height?: number | string; overflow?: boolean; actions?: ButtonProps[]; vertical?: boolean; btnVariant?: ButtonProps['variant']; bgColor?: string; onClose?: () => void; onBackdropClick?: () => void; children?: React.ReactNode; isCollapsed?: boolean; bottom?: string; showBack?: boolean; handleBack?: () => void; } export interface BaseModalHandle { wrapperRef: React.RefObject; } export declare const Base: React.ForwardRefExoticComponent>;