import { type JSX } from 'react'; import { Mode } from './types'; type SubpageListingComponentProps = { docPostId: string; mode: Mode; onModeChange: (mode: Mode) => void; }; export default function SubpageListingComponent({ docPostId, mode, onModeChange, }: SubpageListingComponentProps): JSX.Element; export {};