import type { CustomTypeModelFieldType } from "./types"; /** * A Link Custom Type field. * * More details: * {@link https://prismic.io/docs/core-concepts/link-content-relationship} */ export interface CustomTypeModelLinkField { type: typeof CustomTypeModelFieldType.Link; config?: { label?: string | null; placeholder?: string; select?: null | typeof CustomTypeModelLinkSelectType[keyof typeof CustomTypeModelLinkSelectType]; allowTargetBlank?: boolean; }; } /** * Type of a Link Custom Type field. * * More details: * {@link https://prismic.io/docs/core-concepts/link-content-relationship} */ export declare const CustomTypeModelLinkSelectType: { readonly Document: "document"; readonly Media: "media"; readonly Web: "web"; };