import type { OctopusError } from "./octopusError"; export interface Warnings { message: string; warnings: string[]; parsedHelpLinks?: string[]; helpText?: string; helpLink?: string; fieldWarnings: { [other: string]: string; }; details?: { [key: string]: string; }; } export interface OctopusValidationResponse { HasWarnings: boolean; Warnings: WarningGuidance; HasErrors: boolean; Errors: OctopusError; } export interface WarningGuidance { WarningMessage: string; Warnings: string[]; ParsedHelpLinks?: string[]; HelpText?: string; HelpLink?: string; Details?: WarningDetails; } export interface WarningDetails { [key: string]: WarningDetailEntry; } export interface WarningDetailEntry { [key: string]: string[]; } export declare function createWarningsFromOctopusWarning(warning: WarningGuidance): Warnings;