import React from 'react'; export interface InlineTextProps { idx: string; children?: React.ReactNode; onChange: (content: string) => void; mutators: Record any>; } export declare function InlineText({ idx, onChange, children, mutators: { setFieldTouched }, }: InlineTextProps): JSX.Element | null;