/** * Shared utilities for collection ID parsing and special collections. */ /** * Special collection IDs in Raindrop.io */ export declare const SPECIAL_COLLECTIONS: { readonly all: 0; readonly unsorted: -1; readonly trash: -99; }; export type SpecialCollectionName = keyof typeof SPECIAL_COLLECTIONS; /** * Parse collection ID from string argument. * Supports numeric IDs and special names (all, unsorted, trash). */ export declare function parseCollectionId(value: string | undefined): number; //# sourceMappingURL=collections.d.ts.map