interface AgreementDrawerProps { isOpen: boolean; onClose: () => void; } declare const AgreementDrawer: ({ isOpen, onClose }: AgreementDrawerProps) => import("react/jsx-runtime").JSX.Element; export default AgreementDrawer;