import { default as React } from 'react'; export type modalProp = { width?: "sm" | "md" | "lg" | "xl"; show?: boolean; onHide: () => void; title: string; children?: React.ReactNode; data?: Record; transition?: "bond" | "sketch" | "unfolding" | "revealing" | "meep-meep"; KeysToHide?: string[]; handleViewObjects?: handleObj; modalClassName?: string; modalStyle?: React.CSSProperties; }; export declare const elementStyle: ElementStyle;