import * as prismic from "@prismicio/client";
import { MockModelConfig } from "../types";
export type MockContentRelationshipModelConfig<CustomTypeIDs extends string = string, Tags extends string = string> = {
    customTypeIDs?: readonly CustomTypeIDs[];
    tags?: readonly Tags[];
} & MockModelConfig;
export declare const contentRelationship: <CustomTypeIDs extends string, Tags extends string>(config: MockContentRelationshipModelConfig<CustomTypeIDs, Tags>) => prismic.CustomTypeModelContentRelationshipField<CustomTypeIDs, Tags>;
