/**
 * Web Modal Component
 *
 */
import type { HTMLProps } from 'react';
import type { SectionAllProps } from '../../Section';
export type ModalInnerProps = SectionAllProps;
declare function ModalInner(props: ModalInnerProps & HTMLProps<HTMLElement>): import("react/jsx-runtime").JSX.Element;
export default ModalInner;
