import { ErrorUnion, OkUnion } from '../outputs'; /** * Changes the bio of the current user * @param {Object} params * @param {string} [params.bio] - The new value of the user bio; 0-70 characters * without line feeds * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type SetBioMethod = (params: SetBioParams, state?: Record) => Promise; export interface SetBioParams { /** The new value of the user bio; 0-70 characters without line feeds */ bio?: string; }