@papernote/ui
Version:
A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive
14 lines • 488 B
TypeScript
import React from 'react';
import { type ToolbarSection } from './ExpandableToolbar';
export interface AppLayoutProps {
children: React.ReactNode;
toolbarSections?: ToolbarSection[];
className?: string;
showToolbar?: boolean;
showStatusBar?: boolean;
toolbarCollapsed?: boolean;
onToolbarCollapseChange?: (collapsed: boolean) => void;
}
export declare const AppLayout: React.FC<AppLayoutProps>;
export default AppLayout;
//# sourceMappingURL=AppLayout.d.ts.map