import { IoTClient } from '@aws-sdk/client-iot'; export declare const createDevice: ({ iot, thingGroupName, certsDir, endpoint, attributes, }: { iot: IoTClient; certsDir: string; thingGroupName: string; endpoint: string; attributes?: Record | undefined; }) => Promise<{ thingArn: string; thingName: string; }>;