import type { FieldType, SlicesTypes } from "@prismicio/types-internal/lib/customtypes"; export interface Definition { type: T; } export declare function isFieldDef(obj: unknown): obj is WithKey>; type WithType = { type: string; }; export declare function hasType(obj: unknown): obj is WithType; export type WithKey> = { key: string; def: D; }; export {};