import React from 'react'; type InputEditableProps = { type?: 'text' | 'number' | 'email' | 'password' | 'date'; placeholder?: string; label?: string; value?: string; iconSlot?: React.ReactNode; showReadOnlyValue?: boolean; textAlignRight?: boolean; fullWidth?: boolean; defaultValue?: string; stacked?: boolean; }; export declare const InputEditable: ({ type, placeholder, label, value, iconSlot, showReadOnlyValue, textAlignRight, fullWidth, defaultValue, stacked, }: InputEditableProps) => import("react/jsx-runtime").JSX.Element; export default InputEditable;