///
import type { DialogItem } from '../type/DialogItem';
import type { LocalizedStrings } from '../../common/index';
/**
* @internal
*/
export interface InputDialogItemProps {
itemName: ItemNames;
strings: LocalizedStrings | undefined;
items: Record>;
currentValues: Record;
onEnterKey: () => void;
onChanged: (itemName: ItemNames, newValue: string) => void;
rows?: number;
}
/**
* @internal
*/
export declare function InputDialogItem(props: InputDialogItemProps): JSX.Element;