import { MockModelConfig } from "../types.cjs";
import * as prismic from "@prismicio/client";

//#region src/model/contentRelationship.d.ts
type MockContentRelationshipModelConfig<CustomTypeIDs extends string = string, Tags extends string = string> = {
  customTypeIDs?: readonly CustomTypeIDs[];
  tags?: readonly Tags[];
} & MockModelConfig;
declare const contentRelationship: <CustomTypeIDs extends string, Tags extends string>(config: MockContentRelationshipModelConfig<CustomTypeIDs, Tags>) => prismic.CustomTypeModelContentRelationshipField<CustomTypeIDs, Tags>;
//#endregion
export { MockContentRelationshipModelConfig, contentRelationship };
//# sourceMappingURL=contentRelationship.d.cts.map