/**
 * User data to update using {@link HelixUserApi#updateAuthenticatedUser}}.
 */
export interface HelixUserUpdate {
    description?: string;
}
/**
 * Additional info for a block to be created.
 */
export interface HelixUserBlockAdditionalInfo {
    /**
     * The source context for blocking the user.
     */
    sourceContext?: 'chat' | 'whisper';
    /**
     * The reason for blocking the user.
     */
    reason?: 'spam' | 'harassment' | 'other';
}
//# sourceMappingURL=user.input.d.ts.map