import { ReactNode } from '../../node_modules/react'; export type FieldPlaceholderKind = 'text' | 'select'; /** * Placeholders are enabled by default: when `placeholder` is omitted and a string * `label` is present, derive a hint from the label. Pass `placeholder=""` to disable. */ export declare function resolveFieldPlaceholder(label: ReactNode | undefined, placeholder: string | undefined, kind?: FieldPlaceholderKind): string | undefined;