import { Interpolation, Theme } from '@emotion/react'; import React from 'react'; type InlineEditProps = { text: string; onSetText: (text: string) => void; placeholder?: string; styles?: { placeholderColor: string; }; handleStyle?: (isFocus: boolean) => Interpolation; inputCss?: Interpolation; autoRow?: boolean; maxLength?: number; }; declare const EditInlineInput: React.FC; export default EditInlineInput;