import React from "react"; export interface ShelfProps { children: React.ReactNode; open?: boolean; onAnimationEnd?: () => void; onClose?: () => void; }