@papernote/ui
Version:
A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive
13 lines • 385 B
TypeScript
import React from 'react';
interface Section {
id: string;
label: string;
}
export interface PageNavigationProps {
className?: string;
/** External sections to display (overrides auto-detection) */
sections?: Section[];
}
export declare const PageNavigation: React.FC<PageNavigationProps>;
export default PageNavigation;
//# sourceMappingURL=PageNavigation.d.ts.map