import type { InputWithSettings, LevaInputProps } from '../../types' export type StringSettings = { editable?: boolean; rows?: boolean | number } export type InternalStringSettings = { editable: boolean; rows: number } export type StringInput = InputWithSettings export type StringProps = LevaInputProps