export interface GetValidatorUserInfoResponse {
    party_id: string;
    user_name: string;
    featured: boolean;
}
/**
 * Get public information about the validator operator
 *
 * @example
 *   ```typescript
 *   const info = await client.getValidatorUserInfo();
 *   console.log('User name:', info.user_name);
 *   console.log('Party ID:', info.party_id);
 *   ```;
 */
export declare const GetValidatorUserInfo: new (client: import("../../../../core").BaseClient) => import("../../../../core").ApiOperation<void, GetValidatorUserInfoResponse>;
//# sourceMappingURL=get-validator-user-info.d.ts.map