import { type BoxProps } from '../Box'; export type ModalContentProps = BoxProps & { onScrollContent?: ((touching: { top: boolean; }) => void) | undefined; }; declare const ModalContent: ({ children, onScrollContent, ...props }: ModalContentProps) => import("react/jsx-runtime").JSX.Element; export default ModalContent; //# sourceMappingURL=ModalContent.d.ts.map