import { type TextContent } from "@prismicio/types-internal/lib/content"; import type { Text } from "@prismicio/types-internal/lib/customtypes"; import { type ReactNode } from "react"; interface Props { content: TextContent | undefined; field: Text; id: string; onContentChange: (content: TextContent | undefined) => void; readOnly: boolean; endAdornment?: ReactNode; } export declare function KeyTextField(props: Props): JSX.Element; export {};