import { type DeviceEvent, type SmartThingsClient } from '@smartthings/core-sdk'; import { type APICommand } from '../api-command.js'; export type EventCreateFlags = { deviceId?: string; name?: string; value?: string; unit?: string; }; export declare const convertAttributeValue: (attributeType: string | undefined, attributeValue: string) => unknown; export declare const parseDeviceEvent: (client: SmartThingsClient, attributeName: string, attributeValue: string, unit?: string) => Promise; export declare const getInputFromUser: (command: APICommand, argv: EventCreateFlags, deviceId: string) => Promise; //# sourceMappingURL=virtualdevices-events.d.ts.map