import type { BooleanField, GeoPoint, NestableWidget, Separator, Table, UID } from "@prismicio/types-internal/lib/customtypes"; type Widgets = NestableWidget | UID; type Field = Exclude; export declare function getFieldLabel(field: Widgets): string; export declare const DEFAULT_PLACEHOLDER = "..."; export declare function getBooleanFieldPlaceholder(field: BooleanField, value: boolean, defaultPlaceholder?: string): string; export declare function getFieldPlaceholder(field: Exclude, defaultPlaceholder?: string): string; export {};