import { CardsShutdownContent } from '../../../context/featureProvider/useZeniCardsVisibilityConfig'; export interface CardsShutdownDrawerProps { isOpen: boolean; shutdownContent: CardsShutdownContent; onClose: () => void; } declare const CardsShutdownDrawer: ({ isOpen, shutdownContent, onClose, }: CardsShutdownDrawerProps) => import("react/jsx-runtime").JSX.Element; export default CardsShutdownDrawer;