/** * Throws a `ValidationError` if the given id collides with a reserved path * segment for its kind. * * @param options {object} * @param options.id {string} the proposed collection or resource id * @param options.kind {string} 'collection' or 'resource', selects the * reserved set and is used in the message * @returns {void} */ export declare function assertNotReserved({ id, kind }: { id: string; kind: 'collection' | 'resource'; }): void; //# sourceMappingURL=reserved.d.ts.map