/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ /** Variables for the GetHighRevenueAccounts query */ export type GetHighRevenueAccountsVariables = { minRevenue?: number | null; }; /** Shape of an Account node returned by the query */ export interface Account { Id: string; Name?: { value?: string | null; } | null; AnnualRevenue?: { value?: number | null; } | null; Industry?: { value?: string | null; } | null; Website?: { value?: string | null; } | null; } /** * Fetch accounts with annual revenue greater than the specified amount * * @param variables - Query variables including minRevenue threshold * @returns Array of accounts matching the criteria */ export declare function getHighRevenueAccounts(variables: GetHighRevenueAccountsVariables): Promise<(Account | null | undefined)[]>; //# sourceMappingURL=accounts.d.ts.map