import type { StoryTree, StoryOrder } from "../../shared/types"; export declare const storyDelimiter = "-"; export declare const storyEncodeDelimiter = "$"; export declare const getQueryStory: (locationSearch: string, defaultStory: string) => string; export declare const isQueryStorySet: (locationSearch: string) => boolean; export declare const capitalize: (s: string) => string; export declare const storyIdToTitle: (s: string) => string; export declare const getStoryTree: (stories: string[], selectedStory: string, allExpanded?: boolean) => StoryTree; export declare const sortStories: (stories: string[], storyOrder: StoryOrder) => string[];