import { InputProps } from 'antd'; import { ReactNode } from 'react'; export interface EditInlineProps { text?: string; showText?: boolean | ((text?: string) => any); onEdit?: () => void; onOk?: (value: undefined | string) => void; onCancel?: () => void; okText?: ReactNode; cancelText?: ReactNode; inputProps?: InputProps; showEdit?: boolean; editText?: any; iconType?: string; editable?: boolean; buttonSpacing?: number; textSpacing?: number; linkButton?: boolean; editingClassName?: string; } export declare function EditInline(props: EditInlineProps): JSX.Element;