import { GraphQLClient } from 'graphql-request';
export declare class AccountService {
    private client;
    constructor(client: GraphQLClient);
    /**
     * Get account information
     */
    getAccountInfo(): Promise<{
        accountId: string;
        name?: string;
    }>;
    /**
     * Test the connection to JupiterOne
     */
    testConnection(): Promise<boolean>;
}
//# sourceMappingURL=account-service.d.ts.map