import { V3Interaction } from '@pact-foundation/pact'; import { UpdateAccountRequest } from '../model/UpdateAccountRequest'; export declare const getAccounts: () => V3Interaction; export declare const getAccount: (id: string) => V3Interaction; export declare const deleteAccount: (id: string) => V3Interaction; export declare const getAccountUsers: (id: string) => V3Interaction; export declare const getAccountUsersByEmail: (id: string, emailQuery: string) => V3Interaction; export declare const getNoAccountUsersWhenEmailMismatch: (id: string, emailQuery: string) => V3Interaction; export declare const getAccountContentPackages: (id: string) => V3Interaction; export declare const getAccountPrices: (id: string) => V3Interaction; export declare const getAccountApiClient: (id: string) => V3Interaction; export declare const updateAccount: (id: string, updateRequest: UpdateAccountRequest) => V3Interaction; export declare const getSimilarAccounts: (id: string) => V3Interaction;