import { default as React } from '../../../node_modules/react'; interface AttrTagProps { id: string; name: string; editingKey: string | undefined; onDelete: (id: string) => void; onRenameStart: (key: string) => void; onRenameEnd: (oldKey: string, newKey: string) => void; } export declare function AttrTag(props: AttrTagProps): React.JSX.Element; export {};