import { type HTMLAttributes } from 'react';
type EditableDeviceNameProps = {
onEdit?: (newName: string) => void;
editable?: boolean;
tagName?: string;
value: string;
} & HTMLAttributes;
export declare function EditableDeviceName({ onEdit, editable, tagName, value, ...props }: EditableDeviceNameProps): JSX.Element;
export {};