import { ReactElement } from "react"; export interface DefaultModalProps { children: ReactElement | string; width: string; height: string; borderRadius: string; position: "top-left" | "top" | "top-left" | "center-left" | "center" | "center-right" | "bottom-left" | "bottom" | "bottom-right"; } export declare const DefaultModal: ({ children, width, height, borderRadius, position, ...rest }: DefaultModalProps) => JSX.Element;