import { ReactNode, default as React } from 'react'; interface ExpandingSectionProps { title: ReactNode; children: ReactNode; id: string; defaultState?: "open" | "closed"; } export default function ExpandingSection({ title, children, id, defaultState, }: ExpandingSectionProps): ReturnType; export {};