import { DeveloperPlatformClient } from '../../utilities/developer-platform-client.js'; import { MinimalAppIdentifiers } from '../../models/organization.js'; export interface AppCredentials { clientSecret?: string; apiKey?: string; clientId?: string; } /** * Grabs secret and api_key from .env file if existing * * @returns secret and api_key */ export declare function findInEnv(): Promise; /** * Find the app api_key, if available * * @param developerPlatformClient - The client to access the platform API * @returns appIdentifiers */ export declare function findOrganizationApp(developerPlatformClient: DeveloperPlatformClient): Promise & { organizationId: MinimalAppIdentifiers['organizationId']; }>; /** * Find the app api_key, if available * * @param developerPlatformClient - The client to access the platform API * @param apiKey - app api_key * @returns client_id, client_secret, client_api_key */ export declare function requestAppInfo({ id, apiKey, organizationId }: MinimalAppIdentifiers, developerPlatformClient: DeveloperPlatformClient): Promise;