import { AccountInfo } from '../../services/context/partner-account-info.js'; import { DeveloperPlatformClient } from '../../utilities/developer-platform-client.js'; export declare const CurrentAccountInfoQuery: string; interface AccountInfoSchema { __typename: string; email?: string; orgName?: string; } export interface CurrentAccountInfoSchema { currentAccountInfo: AccountInfoSchema; } export declare function getCurrentAccountInfo(developerPlatformClient: DeveloperPlatformClient): Promise; export {};