import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { PreferencesInput } from '../types'; export type UserPreferencesCreateParams = { /** * * @type { PreferencesInput } * @memberof UserPreferencesCreateApi */ preferencesInput: PreferencesInput; options?: AxiosRequestConfig; }; export type UserPreferencesCreateReturnType = PreferencesInput; /** * Accept the settings as input, and adjust the actual models accordingly. The current account settings will be updated, or one will be created, with the * @param {UserPreferencesCreateParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const userPreferencesCreateParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([UserPreferencesCreateParams] | [PreferencesInput, AxiosRequestConfig])) => Promise>; export default userPreferencesCreateParamCreator; //# sourceMappingURL=index.d.ts.map