import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { AllAck } from '../types'; export type AckAllListParams = { options?: AxiosRequestConfig; }; export type AckAllListReturnType = Array; /** * List acks from all accounts, with org_id. Has no pagination. * @param {AckAllListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ackAllListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([AckAllListParams] | [AxiosRequestConfig])) => Promise>; export default ackAllListParamCreator; //# sourceMappingURL=index.d.ts.map