import { type ComponentType } from "react"; export type InlineFieldKind = "text" | "email" | "url" | "textarea"; export interface InlineFieldProps { icon?: ComponentType<{ className?: string; }>; label: string; value: string | null; kind?: InlineFieldKind; href?: string; placeholder?: string; disabled?: boolean; onSave: (next: string | null) => Promise; } export declare function InlineField({ icon: Icon, label, value, kind, href, placeholder, disabled, onSave, }: InlineFieldProps): import("react").JSX.Element;