///
import { FormItemProps } from '../Item';
import { TabsType } from '../../ui/Tabs/interfaces';
import { TextInputProps } from './TextInput';
import { EditorInputProps } from './EditorInput';
import { MultilineTextInputProps } from './MultilineTextInput';
declare type FieldMap = {
editor: EditorInputProps;
text: TextInputProps;
multilineText: MultilineTextInputProps;
};
declare type FieldProps = {
field: K;
props?: Omit;
};
declare type LanguageType = {
label: string;
value: string;
};
declare type TranslatableInputType = {
name: string;
placeholder?: string | undefined;
languages: LanguageType[];
tabType?: TabsType;
};
export declare const TranslatableInput: {
(props: FieldProps & TranslatableInputType & FormItemProps): JSX.Element;
inputName: string;
};
export {};