Files
wdi-dashboard/node_modules/@chakra-ui/modal/dist/modal-content.d.ts
2024-08-16 15:06:52 +05:30

22 lines
747 B
TypeScript

import * as _chakra_ui_system from '@chakra-ui/system';
import { HTMLChakraProps } from '@chakra-ui/system';
import { HTMLMotionProps } from 'framer-motion';
interface ModalContentProps extends HTMLChakraProps<"section"> {
/**
* The props to forward to the modal's content wrapper
*/
containerProps?: HTMLChakraProps<"div">;
/**
* The custom framer-motion transition to use for the modal
*/
motionProps?: HTMLMotionProps<"section">;
}
/**
* ModalContent is used to group modal's content. It has all the
* necessary `aria-*` properties to indicate that it is a modal
*/
declare const ModalContent: _chakra_ui_system.ComponentWithAs<"section", ModalContentProps>;
export { ModalContent, ModalContentProps };