import { type GuideFileFormat } from '@auden.to/protocol'; export type ParsedFileOrigin = { format: GuideFileFormat; path: string; }; /** * Parse the `file:{format}:{path}` origin string set by the dashboard import * endpoint. Returns null for any other origin shape (`null`, `undefined`, * non-`file:` prefixes, missing format, missing path, or a format that is not * in the canonical 5-format schema). * * The path may contain `:` (Windows paths, schema-like segments). Everything * after the second `:` is treated verbatim as the path. */ export declare function parseFileOrigin(origin: string | null | undefined): ParsedFileOrigin | null; //# sourceMappingURL=file-origin.d.ts.map