export interface EsriWorkflowExceptionsDetailedErrorDTO {
    message: string;
    type: string;
    details: Array<object>;
}
export declare function EsriWorkflowExceptionsDetailedErrorDTOFromJSON(json: any): EsriWorkflowExceptionsDetailedErrorDTO;
export declare function EsriWorkflowExceptionsDetailedErrorDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): EsriWorkflowExceptionsDetailedErrorDTO;
export declare function EsriWorkflowExceptionsDetailedErrorDTOToJSON(value?: EsriWorkflowExceptionsDetailedErrorDTO | null): any;
