import { DirectoryTreeState, UseDirectoryTreeStateProps } from './types'; /** * A React hook for managing the state of a directory tree. * ディレクトリツリーの状態を管理するための React フック。 * * This hook is designed to work with Server-Side Rendering (SSR) by allowing * the initial expansion state to be passed in as a prop. * このフックは、初期の展開状態をプロパティとして渡すことで、 * サーバーサイドレンダリング (SSR) と連携するように設計されています。 * * @param props - The properties for the hook. * @returns The state and actions for the directory tree. */ export declare const useDirectoryTreeState: ({ initialExpanded, storageKey }?: UseDirectoryTreeStateProps) => DirectoryTreeState; //# sourceMappingURL=useDirectoryTreeState.d.ts.map