volleyball-dev-frontend/node_modules/react-pdf/dist/cjs/StructTreeItem.d.ts
2025-06-02 16:42:16 +00:00

9 lines
389 B
TypeScript

import type { StructTreeContent } from 'pdfjs-dist/types/src/display/api.js';
import type { StructTreeNodeWithExtraAttributes } from './shared/types.js';
type StructTreeItemProps = {
className?: string;
node: StructTreeNodeWithExtraAttributes | StructTreeContent;
};
export default function StructTreeItem({ className, node, }: StructTreeItemProps): React.ReactElement;
export {};