import type { AdminClient } from './client.js'; import type { AppRecord, CreatedApp, CreateAppInput, UpdateAppInput } from './types.js'; export declare const createAppsApi: (client: AdminClient) => { create: (input: CreateAppInput) => Promise; list: () => Promise; get: (id: string) => Promise; update: (id: string, input: UpdateAppInput) => Promise; rotateSecret: (id: string) => Promise<{ appSecret: string; }>; delete: (id: string) => Promise<{ ok: true; }>; }; //# sourceMappingURL=apps.d.ts.map