export { sanitizeName } from '../../utils/sanitize.ts'; export declare function stripDashes(id: string): string; /** * Join a Notion object's title to its id inside the NAME_MAX budget. The one * place the pair is composed, so a title long enough to be trimmed is trimmed * the same way everywhere -- a second spelling names a path that does not * exist. */ export declare function formatSegment(page: { id: string; title: string; }): string; export declare function parseSegment(segment: string): { title: string; id: string; }; //# sourceMappingURL=pathing.d.ts.map