import { UserPrivacySettingInputUnion } from '../inputs'; import { ErrorUnion, UserPrivacySettingRulesUnion } from '../outputs'; /** * Returns the current privacy settings * @param {Object} params * @param {UserPrivacySettingInputUnion} [params.setting] - The privacy setting * @param {Object} state * @returns {UserPrivacySettingRulesUnion | ErrorUnion} */ export declare type GetUserPrivacySettingRulesMethod = (params: GetUserPrivacySettingRulesParams, state?: Record) => Promise; export interface GetUserPrivacySettingRulesParams { /** The privacy setting */ setting?: UserPrivacySettingInputUnion; }