import { type SchemaApp, type SchemaAppInvitation, type SmartThingsClient } from '@smartthings/core-sdk'; export type InvitationWithAppDetails = SchemaAppInvitation & { schemaAppId?: string; schemaAppName?: string; sort: string; }; export declare const addAppDetails: (invite: SchemaAppInvitation, app: SchemaApp) => InvitationWithAppDetails; /** * Since there is no API to get a single invitation, this function uses the list function to get all * invites for a given schema app and then returns the one specified by the `id` parameter. */ export declare const getSingleInvite: (client: SmartThingsClient, schemaAppId: string | undefined, id: string) => Promise; //# sourceMappingURL=schema-invites.d.ts.map