/** @module WebDesigner */ /** */ interface StateWithHistory { past: State[]; present: State; future: State[]; _latestUnfiltered: State; group: any; index: number; limit: number; } declare namespace JSXR { interface Element {} } declare namespace React { export type ReactNode = ReactChild | boolean | null | undefined; export type ComponentType

= {}; export type CSSProperties = any; export type ContextType = any; export type Context = any; export type Key = string | number; export type ReactChild = ReactElement | string | number; export class Component

{} export type MouseEvent = (value: T) => void; export type KeyboardEvent = (value: T) => void; export interface ReactElement

{ type: T; props: P; key: Key | null; } } type ReactNode = React.ReactNode; declare namespace redux { export interface AnyAction { type: string; [extraProps: string]: any; } export interface Store { dispatch: (action: A) => A; getState(): S; } } type AnyAction = redux.AnyAction; type DecodeFailure$2 = { type: 'warning' | 'error'; context: string; message: string; }; type Expand = T extends infer O ? { [K in keyof O]: O[K]; } : never; type ExpandRecursively = T extends object ? (T extends infer O ? { [K in keyof O]: ExpandRecursively; } : never) : T; type Result$2 = { type: 'success'; value: T; warnings?: DecodeFailure$2[]; } | { type: 'error'; reason: TErr; }; type Decoder$2 = { decode: (i: TI) => Result$2; encode: (i: TR) => TI; }; type InputOf$1 = TD extends Decoder$2 ? TI : never; type TypeOf$2 = TD extends Decoder$2 ? TO : never; type Expr$1 = string | T; type Variant = number | string | null; declare const ExprVariant$1: Decoder$2>; declare const Length$2: Decoder$2; declare const Enums: { FontStyle: Decoder$2<"Default" | "Normal" | "Italic", "Default" | "Normal" | "Italic">; FontWeight: Decoder$2<"Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder", "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder">; BackgroundGradientType: Decoder$2<"None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter", "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter">; TextDecoration: Decoder$2<"Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough", "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough">; TextAlign: Decoder$2<"Center" | "General" | "Left" | "Right" | "Justify", "Center" | "General" | "Left" | "Right" | "Justify">; VerticalAlign: Decoder$2<"Default" | "Top" | "Middle" | "Bottom", "Default" | "Top" | "Middle" | "Bottom">; VerticalImageAlign: Decoder$2<"Top" | "Middle" | "Bottom", "Top" | "Middle" | "Bottom">; HorizontalImageAlign: Decoder$2<"Center" | "Left" | "Right", "Center" | "Left" | "Right">; WrapMode: Decoder$2<"NoWrap" | "CharWrap" | "WordWrap", "NoWrap" | "CharWrap" | "WordWrap">; Direction: Decoder$2<"Default" | "LTR" | "RTL", "Default" | "LTR" | "RTL">; LayoutDirection: Decoder$2<"LTR" | "RTL", "LTR" | "RTL">; WritingMode: Decoder$2<"lr-tb" | "tb-rl", "lr-tb" | "tb-rl">; Calendar: Decoder$2<"Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist", "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist">; UnicodeBiDi: Decoder$2<"Normal" | "Embed" | "BidiOverride", "Normal" | "Embed" | "BidiOverride">; UprightInVerticalText: Decoder$2<"None" | "Digits" | "DigitsAndLatinLetters", "None" | "Digits" | "DigitsAndLatinLetters">; TextJustify: Decoder$2<"Auto" | "Distribute" | "DistributeAllLines", "Auto" | "Distribute" | "DistributeAllLines">; BorderStyle: Decoder$2<"Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset", "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset">; BorderSideStyle: Decoder$2<"" | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset", "" | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset">; BreakLocation: Decoder$2<"None" | "Start" | "End" | "StartAndEnd" | "Between", "None" | "Start" | "End" | "StartAndEnd" | "Between">; NewPage: Decoder$2<"Next" | "Odd" | "Even", "Next" | "Odd" | "Even">; DataElementOutput: Decoder$2<"Auto" | "Output" | "NoOutput" | "ContentsOnly", "Auto" | "Output" | "NoOutput" | "ContentsOnly">; DataElementStyle: Decoder$2<"Auto" | "AttributeNormal" | "ElementNormal", "Auto" | "AttributeNormal" | "ElementNormal">; ImageSource: Decoder$2<"External" | "Embedded" | "Database", "External" | "Embedded" | "Database">; ImageRepeat: Decoder$2<"Repeat" | "NoRepeat" | "RepeatX" | "RepeatY", "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY">; ShapeStyle: Decoder$2<"Rectangle" | "RoundRect" | "Ellipse", "Rectangle" | "RoundRect" | "Ellipse">; ApplyValueCmd: Decoder$2<"Set" | "Reset" | "Toggle", "Set" | "Reset" | "Toggle">; ReportPartPropertyType: Decoder$2<"string" | "boolean" | "length" | "integer" | "float" | "color" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "textDecoration" | "lineWidth" | "borderStyle" | "lineStyle", "string" | "boolean" | "length" | "integer" | "float" | "color" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "textDecoration" | "lineWidth" | "borderStyle" | "lineStyle">; RectangleOverflow: Decoder$2<"Auto" | "Scroll" | "Clip" | "Grow", "Auto" | "Scroll" | "Clip" | "Grow">; BulletLabelFontStyles: Decoder$2<"Italic" | "Bold" | "Underline" | "Regular" | "Strikeout", "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout">; ParagraphTextAlign: Decoder$2<"Center" | "Left" | "Right" | "Justify", "Center" | "Left" | "Right" | "Justify">; }; declare const Action$1: Decoder$2<{ Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined, { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }>; type StylePropertyStatus = 'default' | 'modified' | 'inherit'; type PropertyStatusObj = { [K in keyof T]: T[K] extends object ? PropertyStatusObj : StylePropertyStatus; }; type WithStatus = T & { $status: PropertyStatusObj; }; declare const reportItemBase$1: Decoder$2<{ Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }, { Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; }>; type RdlReportItemBase$1 = { Type: string; } & InputOf$1; type ReportItemBase$1 = { Type: string; } & TypeOf$2; declare const ReportItem$1: { decode: (i: { Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | { Name: string; Type?: "overflowplaceholder" | undefined; Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; LayerName?: string | undefined; OverflowName?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: `=${string}` | "NoWrap" | "CharWrap" | "WordWrap" | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: `=${string}` | "Auto" | "Distribute" | "DistributeAllLines" | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; WrapMode?: `=${string}` | "NoWrap" | "CharWrap" | "WordWrap" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | null | undefined; FixedHeight?: string | null | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase$1; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase$1; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase$1; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase$1; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase$1; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | null | undefined; FixedHeight?: string | null | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase$1 | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase$1 | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | null | undefined; FixedHeight?: string | null | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: RdlReportItemBase$1[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | null | undefined; FixedHeight?: string | null | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { OverflowName?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: `=${string}` | "Rectangle" | "RoundRect" | "Ellipse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedHeight?: string | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "L" | "M" | "Q" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "L" | "M" | "Q" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: `=${string}` | "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Custom" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Column" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Median" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | "Custom" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: `=${string}` | "Center" | "Left" | "Right" | undefined; VerticalAlignment?: `=${string}` | "Top" | "Middle" | "Bottom" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: `=${string}` | "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Cross" | "Diamond" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | null | undefined; FixedHeight?: string | null | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "contentplaceholder" | undefined; Text?: string | undefined; ZIndex?: number | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; })) => Result$2<({ Type: "overflowplaceholder"; Name: string; LayerName: string; } & { Left: string; Top: string; Width: string; Height: string; } & { OverflowName: string; }) | ({ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanGrow: boolean; CanShrink: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; ToggleImage: { InitialState: Expr$1; }; UserSort: { SortExpression: string; SortExpressionScope: string; SortTarget: string; }; Value: Expr$1; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; LineHeight: string; LineSpacing: string; CharacterSpacing: string; WrapMode: `=${string}` | "NoWrap" | "CharWrap" | "WordWrap"; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: `=${string}` | "Auto" | "Distribute" | "DistributeAllLines"; Angle: Expr$1; MinCondenseRate: Expr$1; Color: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "textbox"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CheckAlignment: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight"; Text: string; Checked: Expr$1; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; Style: WithStatus<{ Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; WrapMode: `=${string}` | "NoWrap" | "CharWrap" | "WordWrap"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "checkbox"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; ConsumeWhiteSpace: boolean; DataInstanceName: string; DataInstanceElementOutput: "Output" | "NoOutput"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; RowsOrColumnsCount: number; GrowDirection: "Column" | "ColumnReverse" | "Row" | "RowReverse"; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Color: string; LineHeight: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; ReportItems: ReportItemBase$1[]; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "list"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedWidth: string | null; FixedHeight: string | null; OverflowName: string; }) | ({ KeepTogether: boolean; FillPage: boolean; DetailDataElementName: string; DetailDataCollectionName: string; DetailDataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; FrozenRows: number; FrozenColumns: number; RepeatToFill: boolean; RepeatBlankRows: "None" | "FillPage" | "FillGroup"; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Color: string; LineHeight: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; TableColumns: { Type: "tablecolumn"; Width: string; FixedHeader: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; AutoWidth: "None" | "Proportional"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase$1; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; TableGroups: { Type: "tablegroup"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase$1; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase$1; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; }[]; Details: { Type: "tabledetails"; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase$1; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase$1; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; MaxDetailsPerPage: Expr$1; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "table"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedWidth: string | null; FixedHeight: string | null; OverflowName: string; }) | ({ SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; FrozenRows: number; FrozenColumns: number; RepeatColumnHeaders: boolean; RepeatRowHeaders: boolean; GroupsBeforeRowHeaders: number; LayoutDirection: "LTR" | "RTL"; RowHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; ColumnHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; Corner: ({ RowSpan: number; ColSpan: number; Item: ReportItemBase$1 | null; } | null)[][]; Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: ReportItemBase$1 | null; } | null)[]; }[]; }; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Color: string; LineHeight: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tablix"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedWidth: string | null; FixedHeight: string | null; OverflowName: string; }) | { Left: string; Top: string; Width: string; Height: string; StartPoint: { X: string; Y: string; }; EndPoint: { X: string; Y: string; }; LineWidth: string; LineStyle: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset"; LineColor: string; AccessibleDescription: string; Type: "line"; Name: string; Label: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } | ({ PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; KeepTogether: boolean; PageName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; ConsumeWhiteSpace: boolean; Overflow: "Auto" | "Scroll" | "Clip" | "Grow"; LinkToChild: string; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ReportItems: ReportItemBase$1[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "rectangle"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ KeepTogether: boolean; ConsumeWhiteSpace: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; Header: { RepeatOnNewPage: boolean; ReportItems: ReportItemBase$1[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } | null; Details: { ReportItems: ReportItemBase$1[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistdetails"; } | null; Footer: { RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase$1[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } | null; Groups: { Type: "bandedlistgroup"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; Header: { RepeatOnNewPage: boolean; ReportItems: ReportItemBase$1[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } | null; Footer: { RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase$1[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } | null; }[]; DataSetName: string; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; NewSection: boolean; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "bandedlist"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedWidth: string | null; FixedHeight: string | null; OverflowName: string; }) | ({ ReportName: string; NoRowsMessage: string; KeepTogether: boolean; MergeTransactions: boolean; SubstituteThemeOnSubreport: boolean; InheritStyleSheet: boolean; Parameters: { ParameterName: string; Value: Expr$1; Omit: Expr$1; }[]; Style: { Color: string; LineHeight: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PageName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "subreport"; } & { Left: string; Top: string; Width: string; Height: string; } & { OverflowName: string; }) | ({ Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; ShapeStyle: `=${string}` | "Rectangle" | "RoundRect" | "Ellipse"; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "shape"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ Style: WithStatus<{ BackgroundColor: string; MaxLevel: Expr$1; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Levels: { Type: "tableofcontentslevel"; LevelName: string; DataElementName: string; DisplayFillCharacters: boolean; DisplayPageNumber: boolean; Style: WithStatus<{ Color: string; BackgroundColor: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; TextIndent: string; LeadingChar: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }>; StyleName: string; }[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tableofcontents"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedHeight: string; OverflowName: string; }) | ({ Value: Expr$1; InvalidBarcodeText: string; Symbology: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1"; CheckSum: boolean; BarHeight: string; CaptionGrouping: boolean; CaptionLocation: "None" | "Above" | "Below"; AztecOptions: { ErrorCorrection: number; Layers: number; Encoding: string; }; Code49Options: { Grouping: boolean; GroupNumber: number; }; DataMatrixOptions: { EccMode: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140"; Ecc200SymbolSize: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48"; Ecc200EncodingMode: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256"; Ecc000_140SymbolSize: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49"; StructuredAppend: boolean; StructureNumber: number; FileIdentifier: number; Encoding: string; }; Ean128Fnc1Options: { Resolution: number; ModuleSize: number; BarAdjust: number; }; Gs1CompositeOptions: { CompositeType: "None" | "CCA"; Value: string; }; MaxiCodeOptions: { Mode: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6"; }; MicroPdf417Options: { CompactionMode: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode"; Version: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44"; SegmentIndex: number; SegmentCount: number; FileID: number; }; MicroQrCodeOptions: { Version: "Auto" | "M1" | "M2" | "M3" | "M4"; ErrorLevel: "L" | "M" | "Q"; Mask: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11"; Encoding: string; }; NarrowBarWidth: string; NWRation: number; Pdf417Options: { Columns: number; Rows: number; ErrorCorrectionLevel: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8"; Pdf417Type: "Normal" | "Simple"; }; QrCodeOptions: { Connection: boolean; ConnectionNumber: number; Version: number; ErrorLevel: "L" | "M" | "Q" | "H"; Mask: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111"; Model: "Model2" | "Model1"; Encoding: string; }; QuietZone: { Left: string; Right: string; Top: string; Bottom: string; }; Rotation: string; RssExpandedStacked: { RowCount: number; }; SupplementOptions: { Value: string; BarHeight: string; CaptionLocation: string; Spacing: string; }; Style: { Color: string; BackgroundColor: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "barcode"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ Style: { BackgroundColor: string; BackgroundGradientEndColor: string; BackgroundGradientType: `=${string}` | "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Color: string; LineHeight: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Bar: { BottomWidth: number; NeckHeight: number; Overlap: number; TopWidth: number; Width: number; }; Header: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartheader"; }; Footer: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartfooter"; }; Palette: "Light" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Median" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | "Custom"; CustomPalette: string[]; Legend: { Wrapping: boolean; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; TitleStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; Type: "dvchartgloballegend"; }; PlotArea: { Type: "dvchartplotarea"; Axes: { Type: "dvchartaxis"; AxisLine: boolean; AxisType: "X" | "Y"; DateMode: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year"; Format: string; LabelAngle: number; LabelField: string; Labels: boolean; LabelStyle: { WritingMode: `=${string}` | "lr-tb" | "tb-rl"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; LineStyle: { Border: { Color: string; Style: string; Width: string; }; }; LogBase: number; MajorGrid: boolean; MajorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorTicks: "None" | "Inside" | "Outside" | "Cross"; MajorTickSize: string; MajorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorUnit: Expr$1; Max: Expr$1; Min: Expr$1; MinorGrid: boolean; MinorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorTicks: "None" | "Inside" | "Outside" | "Cross"; MinorTickSize: string; MinorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorUnit: Expr$1; Origin: Expr$1; OverlappingLabels: "Auto" | "Show"; Plots: string[]; Position: "None" | "Near" | "Far"; Reversed: boolean; Scale: "Linear" | "Logarithmic" | "Ordinal" | "Percentage"; Style: { Border: { Color: string; Style: string; Width: string; }; }; TextStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; Title: string; TitleStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; MaxHeight: number; MaxWidth: number; Width: number | null; Height: number | null; LabelRowCount: number; }[]; Legends: { MaxHeight: number; MaxWidth: number; Title: string; LegendType: "Color" | "Shape" | "Size"; IconColor: string; RangeOptions: { Title: string; To: number; }[]; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; TitleStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; Type: "dvchartlegend"; }[]; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; }; Plots: { Type: "dvchartplot"; PlotType: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick"; PlotName: string; Encodings: { Values: { Type: "dvchartvalueaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Category: { Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }; Details: { Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Color: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Shape: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Size: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Texts: { Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; }; Config: { AxisMode: "Cartesian" | "Radial" | "Polygonal"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Bar: { BottomWidth: number | undefined; NeckHeight: number | undefined; Overlap: number | undefined; TopWidth: number | undefined; Width: number | undefined; }; BarLines: boolean; BarLineStyle: { Color: string; Style: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset"; Width: string; }; ClippingMode: "None" | "Clip" | "Fit"; CustomLabels: { Type: "dvchartplotcustomlabel"; Style: { FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; }; Text: string; OffsetX: string; OffsetY: string; }[]; InnerRadius: number; LineAspect: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight"; LineStyle: { Color: string; Style: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset"; Width: string; }; Offset: number; Opacity: number; Overlays: { Name: string; Type: "dvchartoverlay"; OverlayType: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline"; Display: "Front" | "Back"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Field: string; DetailLevel: "Group" | "Total"; LegendLabel: string; Value: string; Axis: "X" | "Y"; AggregateType: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile"; Start: number; End: number; Order: number; Period: number; ForwardForecastPeriod: number; BackwardForecastPeriod: number; Intercept: number | null; }[]; Pointers: { Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; }[]; Radial: boolean; ShowNulls: "Gaps" | "Connected" | "Zeros"; StartAngle: number; Style: { BackgroundColor: string; }; SwapAxes: boolean; Sweep: number; SymbolOpacity: number; SymbolSize: number; Symbols: boolean; SymbolShape: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus"; SymbolStyle: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Text: { ConnectingLine: { Border: { Color: string; Style: string; Width: string; }; }; LinePosition: "Center" | "Auto"; Offset: number; OverlappingLabels: "Auto" | "Show" | "Hide"; TextPosition: "Center" | "Auto" | "Inside" | "Outside"; Template: string; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; }; Tooltip: { Template: string; }; Rules: { Name: string; Type: "dvchartrule"; Condition: string; RuleProperties: { TargetProperty: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate"; Value: Expr$1; }[]; }[]; UnpivotData: boolean; }; PlotChartType: "Custom" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Column" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge"; PlotChartSubtype: "Plain" | "Clustered" | "Stacked"; }[]; AccessibleDescription: string; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "dvchart"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; Sizing: "Clip" | "Fit" | "AutoSize" | "FitProportional"; HorizontalAlignment: `=${string}` | "Center" | "Left" | "Right"; VerticalAlignment: `=${string}` | "Top" | "Middle" | "Bottom"; AccessibleDescription: string; Style: WithStatus<{ PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Type: "image"; Name: string; Label: string; ToolTip: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ LabelFormat: string; LabelFontFamily: string; LabelFontSize: string; LabelFontStyle: `=${string}` | "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout"; LabelFontColor: string; Orientation: "Horizontal" | "Vertical"; ShowLabels: boolean; TargetShape: "Square" | "Dot" | "Line"; TargetLineColor: string; TargetLineWidth: string; TickMarks: "None" | "Inside" | "Outside"; TicksLineColor: string; TicksLineWidth: string; ValueColor: string; BestValue: Expr$1; Interval: Expr$1; Range1Boundary: Expr$1; Range2Boundary: Expr$1; TargetValue: Expr$1; Value: Expr$1; WorstValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "bullet"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ EncodeMailMergeFields: boolean; Html: string; MailMergeFields: { Name: string; Value: string; }[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "formattedtext"; } & { Left: string; Top: string; Width: string; Height: string; }) | ((({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "Text"; Password: boolean; Multiline: boolean; SpellCheck: boolean; MaxLength: number | null; Value: string; Style: { Color: string; BackgroundColor: string; Format: string; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; }) | ({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "CheckBox"; Checked: Expr$1; CheckStyle: "Circle" | "Square" | "Cross" | "Diamond" | "Check" | "Star"; CheckSize: string; Style: { Color: string; BackgroundColor: string; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; })) & { Left: string; Top: string; Width: string; Height: string; }) | ({ DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; FillColor: string; GradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; GradientEndColor: string; LineColor: string; LineWidth: string; MarkerColor: string; MarkerVisibility: boolean; MaximumColumnWidth: string; RangeFillColor: string; RangeGradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; RangeGradientEndColor: string; RangeLowerBound: Expr$1; RangeUpperBound: Expr$1; RangeVisibility: boolean; SparklineType: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar"; SeriesValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "sparkline"; } & { Left: string; Top: string; Width: string; Height: string; }) | ((({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; LineHeight: string; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "None"; Paragraphs: { TextRuns: ({ Type: "text"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Value: string; StyleName: string; Style: { Subscript: Expr$1 | undefined; Superscript: Expr$1 | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ToolTip: string; } | { Type: "image"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Source: "External" | "Embedded" | "Database"; Value: string; Width: string; Height: string; MIMEType: string; ToolTip: string; })[]; LeftIndent: string | undefined; RightIndent: string | undefined; HangingIndent: string | undefined; StyleName: string; Style: { TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ListStyle: "None" | "Numbered" | "Bullet"; ListLevel: number; ListItemIndex: number; SpaceBefore: string | undefined; SpaceAfter: string | undefined; ListStyleType: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[]; }) | ({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; LineHeight: string; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "HTML"; Value: Expr$1; })) & { Left: string; Top: string; Width: string; Height: string; }) | ({ ReportPart: string; Library: string; Properties: { Name: string; Value: string | number | null; }[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "partitem"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedWidth: string | null; FixedHeight: string | null; OverflowName: string; }) | ({ Text: string; ConsumeWhiteSpace: boolean; ReportItems: ReportItemBase$1[]; Type: "contentplaceholder"; Name: string; ZIndex: number; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { Left: string; Top: string; Width: string; Height: string; }), string>; encode: (i: ({ Type: "overflowplaceholder"; Name: string; LayerName: string; } & { Left: string; Top: string; Width: string; Height: string; } & { OverflowName: string; }) | ({ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanGrow: boolean; CanShrink: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; ToggleImage: { InitialState: Expr$1; }; UserSort: { SortExpression: string; SortExpressionScope: string; SortTarget: string; }; Value: Expr$1; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; LineHeight: string; LineSpacing: string; CharacterSpacing: string; WrapMode: `=${string}` | "NoWrap" | "CharWrap" | "WordWrap"; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: `=${string}` | "Auto" | "Distribute" | "DistributeAllLines"; Angle: Expr$1; MinCondenseRate: Expr$1; Color: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "textbox"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CheckAlignment: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight"; Text: string; Checked: Expr$1; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; Style: WithStatus<{ Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; WrapMode: `=${string}` | "NoWrap" | "CharWrap" | "WordWrap"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "checkbox"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; ConsumeWhiteSpace: boolean; DataInstanceName: string; DataInstanceElementOutput: "Output" | "NoOutput"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; RowsOrColumnsCount: number; GrowDirection: "Column" | "ColumnReverse" | "Row" | "RowReverse"; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Color: string; LineHeight: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; ReportItems: ReportItemBase$1[]; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "list"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedWidth: string | null; FixedHeight: string | null; OverflowName: string; }) | ({ KeepTogether: boolean; FillPage: boolean; DetailDataElementName: string; DetailDataCollectionName: string; DetailDataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; FrozenRows: number; FrozenColumns: number; RepeatToFill: boolean; RepeatBlankRows: "None" | "FillPage" | "FillGroup"; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Color: string; LineHeight: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; TableColumns: { Type: "tablecolumn"; Width: string; FixedHeader: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; AutoWidth: "None" | "Proportional"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase$1; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; TableGroups: { Type: "tablegroup"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase$1; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase$1; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; }[]; Details: { Type: "tabledetails"; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase$1; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase$1; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; MaxDetailsPerPage: Expr$1; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "table"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedWidth: string | null; FixedHeight: string | null; OverflowName: string; }) | ({ SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; FrozenRows: number; FrozenColumns: number; RepeatColumnHeaders: boolean; RepeatRowHeaders: boolean; GroupsBeforeRowHeaders: number; LayoutDirection: "LTR" | "RTL"; RowHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; ColumnHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase$1; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; Corner: ({ RowSpan: number; ColSpan: number; Item: ReportItemBase$1 | null; } | null)[][]; Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: ReportItemBase$1 | null; } | null)[]; }[]; }; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Color: string; LineHeight: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tablix"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedWidth: string | null; FixedHeight: string | null; OverflowName: string; }) | { Left: string; Top: string; Width: string; Height: string; StartPoint: { X: string; Y: string; }; EndPoint: { X: string; Y: string; }; LineWidth: string; LineStyle: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset"; LineColor: string; AccessibleDescription: string; Type: "line"; Name: string; Label: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } | ({ PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; KeepTogether: boolean; PageName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; ConsumeWhiteSpace: boolean; Overflow: "Auto" | "Scroll" | "Clip" | "Grow"; LinkToChild: string; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ReportItems: ReportItemBase$1[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "rectangle"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ KeepTogether: boolean; ConsumeWhiteSpace: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; Header: { RepeatOnNewPage: boolean; ReportItems: ReportItemBase$1[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } | null; Details: { ReportItems: ReportItemBase$1[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistdetails"; } | null; Footer: { RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase$1[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } | null; Groups: { Type: "bandedlistgroup"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; Header: { RepeatOnNewPage: boolean; ReportItems: ReportItemBase$1[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } | null; Footer: { RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase$1[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } | null; }[]; DataSetName: string; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; NewSection: boolean; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "bandedlist"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedWidth: string | null; FixedHeight: string | null; OverflowName: string; }) | ({ ReportName: string; NoRowsMessage: string; KeepTogether: boolean; MergeTransactions: boolean; SubstituteThemeOnSubreport: boolean; InheritStyleSheet: boolean; Parameters: { ParameterName: string; Value: Expr$1; Omit: Expr$1; }[]; Style: { Color: string; LineHeight: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PageName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "subreport"; } & { Left: string; Top: string; Width: string; Height: string; } & { OverflowName: string; }) | ({ Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; ShapeStyle: `=${string}` | "Rectangle" | "RoundRect" | "Ellipse"; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "shape"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ Style: WithStatus<{ BackgroundColor: string; MaxLevel: Expr$1; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Levels: { Type: "tableofcontentslevel"; LevelName: string; DataElementName: string; DisplayFillCharacters: boolean; DisplayPageNumber: boolean; Style: WithStatus<{ Color: string; BackgroundColor: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; TextIndent: string; LeadingChar: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }>; StyleName: string; }[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tableofcontents"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedHeight: string; OverflowName: string; }) | ({ Value: Expr$1; InvalidBarcodeText: string; Symbology: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1"; CheckSum: boolean; BarHeight: string; CaptionGrouping: boolean; CaptionLocation: "None" | "Above" | "Below"; AztecOptions: { ErrorCorrection: number; Layers: number; Encoding: string; }; Code49Options: { Grouping: boolean; GroupNumber: number; }; DataMatrixOptions: { EccMode: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140"; Ecc200SymbolSize: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48"; Ecc200EncodingMode: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256"; Ecc000_140SymbolSize: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49"; StructuredAppend: boolean; StructureNumber: number; FileIdentifier: number; Encoding: string; }; Ean128Fnc1Options: { Resolution: number; ModuleSize: number; BarAdjust: number; }; Gs1CompositeOptions: { CompositeType: "None" | "CCA"; Value: string; }; MaxiCodeOptions: { Mode: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6"; }; MicroPdf417Options: { CompactionMode: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode"; Version: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44"; SegmentIndex: number; SegmentCount: number; FileID: number; }; MicroQrCodeOptions: { Version: "Auto" | "M1" | "M2" | "M3" | "M4"; ErrorLevel: "L" | "M" | "Q"; Mask: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11"; Encoding: string; }; NarrowBarWidth: string; NWRation: number; Pdf417Options: { Columns: number; Rows: number; ErrorCorrectionLevel: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8"; Pdf417Type: "Normal" | "Simple"; }; QrCodeOptions: { Connection: boolean; ConnectionNumber: number; Version: number; ErrorLevel: "L" | "M" | "Q" | "H"; Mask: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111"; Model: "Model2" | "Model1"; Encoding: string; }; QuietZone: { Left: string; Right: string; Top: string; Bottom: string; }; Rotation: string; RssExpandedStacked: { RowCount: number; }; SupplementOptions: { Value: string; BarHeight: string; CaptionLocation: string; Spacing: string; }; Style: { Color: string; BackgroundColor: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "barcode"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ Style: { BackgroundColor: string; BackgroundGradientEndColor: string; BackgroundGradientType: `=${string}` | "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Color: string; LineHeight: string; Format: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; Direction: `=${string}` | "Default" | "LTR" | "RTL"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; Language: string; Calendar: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist"; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: `=${string}` | "Normal" | "Embed" | "BidiOverride"; UprightInVerticalText: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Bar: { BottomWidth: number; NeckHeight: number; Overlap: number; TopWidth: number; Width: number; }; Header: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartheader"; }; Footer: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartfooter"; }; Palette: "Light" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Median" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | "Custom"; CustomPalette: string[]; Legend: { Wrapping: boolean; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; TitleStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; Type: "dvchartgloballegend"; }; PlotArea: { Type: "dvchartplotarea"; Axes: { Type: "dvchartaxis"; AxisLine: boolean; AxisType: "X" | "Y"; DateMode: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year"; Format: string; LabelAngle: number; LabelField: string; Labels: boolean; LabelStyle: { WritingMode: `=${string}` | "lr-tb" | "tb-rl"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; LineStyle: { Border: { Color: string; Style: string; Width: string; }; }; LogBase: number; MajorGrid: boolean; MajorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorTicks: "None" | "Inside" | "Outside" | "Cross"; MajorTickSize: string; MajorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorUnit: Expr$1; Max: Expr$1; Min: Expr$1; MinorGrid: boolean; MinorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorTicks: "None" | "Inside" | "Outside" | "Cross"; MinorTickSize: string; MinorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorUnit: Expr$1; Origin: Expr$1; OverlappingLabels: "Auto" | "Show"; Plots: string[]; Position: "None" | "Near" | "Far"; Reversed: boolean; Scale: "Linear" | "Logarithmic" | "Ordinal" | "Percentage"; Style: { Border: { Color: string; Style: string; Width: string; }; }; TextStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; Title: string; TitleStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; MaxHeight: number; MaxWidth: number; Width: number | null; Height: number | null; LabelRowCount: number; }[]; Legends: { MaxHeight: number; MaxWidth: number; Title: string; LegendType: "Color" | "Shape" | "Size"; IconColor: string; RangeOptions: { Title: string; To: number; }[]; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; TitleStyle: { Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; Type: "dvchartlegend"; }[]; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; }; Plots: { Type: "dvchartplot"; PlotType: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick"; PlotName: string; Encodings: { Values: { Type: "dvchartvalueaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Category: { Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }; Details: { Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Color: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Shape: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Size: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Texts: { Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; }; Config: { AxisMode: "Cartesian" | "Radial" | "Polygonal"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Bar: { BottomWidth: number | undefined; NeckHeight: number | undefined; Overlap: number | undefined; TopWidth: number | undefined; Width: number | undefined; }; BarLines: boolean; BarLineStyle: { Color: string; Style: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset"; Width: string; }; ClippingMode: "None" | "Clip" | "Fit"; CustomLabels: { Type: "dvchartplotcustomlabel"; Style: { FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; WritingMode: `=${string}` | "lr-tb" | "tb-rl"; }; Text: string; OffsetX: string; OffsetY: string; }[]; InnerRadius: number; LineAspect: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight"; LineStyle: { Color: string; Style: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset"; Width: string; }; Offset: number; Opacity: number; Overlays: { Name: string; Type: "dvchartoverlay"; OverlayType: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline"; Display: "Front" | "Back"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Field: string; DetailLevel: "Group" | "Total"; LegendLabel: string; Value: string; Axis: "X" | "Y"; AggregateType: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile"; Start: number; End: number; Order: number; Period: number; ForwardForecastPeriod: number; BackwardForecastPeriod: number; Intercept: number | null; }[]; Pointers: { Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; }[]; Radial: boolean; ShowNulls: "Gaps" | "Connected" | "Zeros"; StartAngle: number; Style: { BackgroundColor: string; }; SwapAxes: boolean; Sweep: number; SymbolOpacity: number; SymbolSize: number; Symbols: boolean; SymbolShape: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus"; SymbolStyle: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Text: { ConnectingLine: { Border: { Color: string; Style: string; Width: string; }; }; LinePosition: "Center" | "Auto"; Offset: number; OverlappingLabels: "Auto" | "Show" | "Hide"; TextPosition: "Center" | "Auto" | "Inside" | "Outside"; Template: string; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; Color: string; TextDecoration: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; }; }; Tooltip: { Template: string; }; Rules: { Name: string; Type: "dvchartrule"; Condition: string; RuleProperties: { TargetProperty: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate"; Value: Expr$1; }[]; }[]; UnpivotData: boolean; }; PlotChartType: "Custom" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Column" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge"; PlotChartSubtype: "Plain" | "Clustered" | "Stacked"; }[]; AccessibleDescription: string; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "dvchart"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; Sizing: "Clip" | "Fit" | "AutoSize" | "FitProportional"; HorizontalAlignment: `=${string}` | "Center" | "Left" | "Right"; VerticalAlignment: `=${string}` | "Top" | "Middle" | "Bottom"; AccessibleDescription: string; Style: WithStatus<{ PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Type: "image"; Name: string; Label: string; ToolTip: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ LabelFormat: string; LabelFontFamily: string; LabelFontSize: string; LabelFontStyle: `=${string}` | "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout"; LabelFontColor: string; Orientation: "Horizontal" | "Vertical"; ShowLabels: boolean; TargetShape: "Square" | "Dot" | "Line"; TargetLineColor: string; TargetLineWidth: string; TickMarks: "None" | "Inside" | "Outside"; TicksLineColor: string; TicksLineWidth: string; ValueColor: string; BestValue: Expr$1; Interval: Expr$1; Range1Boundary: Expr$1; Range2Boundary: Expr$1; TargetValue: Expr$1; Value: Expr$1; WorstValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "bullet"; } & { Left: string; Top: string; Width: string; Height: string; }) | ({ EncodeMailMergeFields: boolean; Html: string; MailMergeFields: { Name: string; Value: string; }[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "formattedtext"; } & { Left: string; Top: string; Width: string; Height: string; }) | ((({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "Text"; Password: boolean; Multiline: boolean; SpellCheck: boolean; MaxLength: number | null; Value: string; Style: { Color: string; BackgroundColor: string; Format: string; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; }) | ({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "CheckBox"; Checked: Expr$1; CheckStyle: "Circle" | "Square" | "Cross" | "Diamond" | "Check" | "Star"; CheckSize: string; Style: { Color: string; BackgroundColor: string; TextAlign: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; })) & { Left: string; Top: string; Width: string; Height: string; }) | ({ DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; FillColor: string; GradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; GradientEndColor: string; LineColor: string; LineWidth: string; MarkerColor: string; MarkerVisibility: boolean; MaximumColumnWidth: string; RangeFillColor: string; RangeGradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; RangeGradientEndColor: string; RangeLowerBound: Expr$1; RangeUpperBound: Expr$1; RangeVisibility: boolean; SparklineType: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar"; SeriesValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "sparkline"; } & { Left: string; Top: string; Width: string; Height: string; }) | ((({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; LineHeight: string; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "None"; Paragraphs: { TextRuns: ({ Type: "text"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Value: string; StyleName: string; Style: { Subscript: Expr$1 | undefined; Superscript: Expr$1 | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ToolTip: string; } | { Type: "image"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Source: "External" | "Embedded" | "Database"; Value: string; Width: string; Height: string; MIMEType: string; ToolTip: string; })[]; LeftIndent: string | undefined; RightIndent: string | undefined; HangingIndent: string | undefined; StyleName: string; Style: { TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ListStyle: "None" | "Numbered" | "Bullet"; ListLevel: number; ListItemIndex: number; SpaceBefore: string | undefined; SpaceAfter: string | undefined; ListStyleType: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[]; }) | ({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY"; }; LineHeight: string; VerticalAlign: `=${string}` | "Default" | "Top" | "Middle" | "Bottom"; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: `=${string}` | "Default" | "Normal" | "Italic"; FontFamily: string; FontSize: string; FontWeight: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder"; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "HTML"; Value: Expr$1; })) & { Left: string; Top: string; Width: string; Height: string; }) | ({ ReportPart: string; Library: string; Properties: { Name: string; Value: string | number | null; }[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "partitem"; } & { Left: string; Top: string; Width: string; Height: string; } & { FixedWidth: string | null; FixedHeight: string | null; OverflowName: string; }) | ({ Text: string; ConsumeWhiteSpace: boolean; ReportItems: ReportItemBase$1[]; Type: "contentplaceholder"; Name: string; ZIndex: number; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { Left: string; Top: string; Width: string; Height: string; })) => { Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | { Name: string; Type?: "overflowplaceholder" | undefined; Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; LayerName?: string | undefined; OverflowName?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: `=${string}` | "NoWrap" | "CharWrap" | "WordWrap" | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: `=${string}` | "Auto" | "Distribute" | "DistributeAllLines" | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; WrapMode?: `=${string}` | "NoWrap" | "CharWrap" | "WordWrap" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | null | undefined; FixedHeight?: string | null | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase$1; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase$1; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase$1; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase$1; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase$1; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | null | undefined; FixedHeight?: string | null | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase$1 | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase$1 | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase$1 | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | null | undefined; FixedHeight?: string | null | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: RdlReportItemBase$1[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | null | undefined; FixedHeight?: string | null | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { OverflowName?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: `=${string}` | "Rectangle" | "RoundRect" | "Ellipse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedHeight?: string | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "L" | "M" | "Q" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "L" | "M" | "Q" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: `=${string}` | "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; Direction?: `=${string}` | "Default" | "LTR" | "RTL" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; Language?: string | undefined; Calendar?: `=${string}` | "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: `=${string}` | "Normal" | "Embed" | "BidiOverride" | undefined; UprightInVerticalText?: `=${string}` | "None" | "Digits" | "DigitsAndLatinLetters" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: `=${string}` | "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Custom" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Column" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Median" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | "Custom" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: `=${string}` | "lr-tb" | "tb-rl" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: `=${string}` | "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: `=${string}` | "Center" | "Left" | "Right" | undefined; VerticalAlignment?: `=${string}` | "Top" | "Middle" | "Bottom" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: `=${string}` | "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Cross" | "Diamond" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: `=${string}` | "Center" | "General" | "Left" | "Right" | "Justify" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: `=${string}` | "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: `=${string}` | "Default" | "Top" | "Middle" | "Bottom" | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: `=${string}` | "Default" | "Normal" | "Italic" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: `=${string}` | "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | null | undefined; FixedHeight?: string | null | undefined; OverflowName?: string | undefined; }) | ({ Name: string; Type?: "contentplaceholder" | undefined; Text?: string | undefined; ZIndex?: number | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: RdlReportItemBase$1[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }); }; type Filter = List['Filters'][number]; type ReportItem = TypeOf$2; type List = ReportItem & { Type: 'list'; }; type RdlFilter = Filter; type RdlFilterOperator = RdlFilter['Operator']; type FilterCriterionGenericField = { type: 'generic'; value: string; valueType?: string; }; type FilterCriterionExpressionField = { type: 'expression'; value: string; }; type FilterCriterionParameterField = { type: 'parameter'; value: string; valueType?: string; }; type FilterCriterionField = FilterCriterionGenericField | FilterCriterionExpressionField | FilterCriterionParameterField; type FilterCriterionSemanticOperator = 'EqualTo' | 'NotEqualTo' | 'GreaterThanOrEqualTo' | 'LessThanOrEqualTo' | 'In' | 'NotIn' | 'Between' | 'Contains' | 'DoesNotContain' | 'BeginsWith' | 'DoesNotBeginWith' | 'TopN' | 'BottomN' | 'TopPercent' | 'BottomPercent'; type FilterCriterionOperator = RdlFilterOperator | FilterCriterionSemanticOperator; type FilterCriterionSimpleValue = { type: 'simple'; value: string; }; type FilterCriterionFieldValue = { type: 'field'; value: string; valueType?: string; }; type FilterCriterionParameterValue = { type: 'parameter'; value: string; valueType?: string; }; type FilterCriterionExpressionValue = { type: 'expression'; value: string; }; type FilterCriterionPrimitiveValue = FilterCriterionSimpleValue | FilterCriterionFieldValue | FilterCriterionExpressionValue | FilterCriterionParameterValue; type FilterCriterionBetweenValue = { type: 'between'; from: FilterCriterionPrimitiveValue; to: FilterCriterionPrimitiveValue; }; type FilterCriterionListValue = { type: 'list'; value: string[]; }; type FilterCriterionValue = FilterCriterionPrimitiveValue | FilterCriterionListValue | FilterCriterionBetweenValue; type FilterCriterion = { field: FilterCriterionField | null; operator: FilterCriterionOperator | null; value: FilterCriterionValue | null; }; type FiltersGroup = { operator: 'and' | 'or'; items: (FilterCriterion | FiltersGroup)[]; }; type Filters = FiltersGroup & { Type: 'filter'; }; type Length$1 = TypeOf$2; type OptionalTempWidthHeight = { $width?: string; $height?: string; }; declare const Place: Decoder$2<{ Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }, { $place: { Left: string; Top: string; Width: string; Height: string; }; }>; type Selectable$1 = { $selected?: 'leaf' | 'partial' | null; $primary?: boolean | null; }; type Action = TypeOf$2; type DomAction = { ActionType: 'BookmarkLink'; BookmarkLink: Action['BookmarkLink']; } | { ActionType: 'Drillthrough'; Drillthrough: Action['Drillthrough']; } | { ActionType: 'Hyperlink'; Hyperlink: Action['Hyperlink']; } | { ActionType: 'ApplyParameters'; ApplyParameters: Action['ApplyParameters']; } | { ActionType: 'None'; }; declare const reportItemBase: Decoder$2<{ Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }, { Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; }>; type RdlReportItemBase = { Type: string; } & InputOf$1; type ReportItemBase = (({ Type: string; Name: string; } & TypeOf$2) | { Type: string; Name: string; LayerName: string; }) & TypeOf$2 & Selectable$1; type TablixColumnExtra = { Type: 'tablixcolumn'; Width: Length$1; } & Selectable$1; type TablixRowExtra = { Type: 'tablixrow'; Height: Length$1; } & Selectable$1; type ExprVariant = TypeOf$2; type EncodingAggregateField = { Value: { Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; }[]; FieldType: 'Simple'; }; type EncodingDetailsField = { Value: ExprVariant[]; FieldType: 'Simple'; }; type SimpleEncodingValuesField = { Value: { Value: ExprVariant; Caption: string; }[]; FieldType: 'Simple'; }; type EncodingValuesField = SimpleEncodingValuesField | { FieldType: 'Complex'; Subfields: { Key: string; Value: ExprVariant; Caption: string; }[]; }; type TextEncodingField = { Value: ExprVariant; TemplateKey: string; }; declare const Decoders$1: { Group: Decoder$2<{ Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined, Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }>; ReportItem: { decode: (i: { Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; /** Transform generic band item to a designer's band: * 1) Extracts Height to a $place, and writes it back * 2) makes it Selectable * 3) adds default LayerName **/ Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: RdlReportItemBase[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "contentplaceholder" | undefined; Text?: string | undefined; ZIndex?: number | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; })) => Result$2<(Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanGrow: boolean; CanShrink: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; ToggleImage: { InitialState: Expr$1; }; UserSort: { SortExpression: string; SortExpressionScope: string; SortTarget: string; }; Value: Expr$1; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; LineSpacing: string; CharacterSpacing: string; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; Color: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "textbox"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Action"> & { Action: DomAction; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; LineSpacing: string; CharacterSpacing: string; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; Color: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; }) | (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CheckAlignment: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight"; Text: string; Checked: Expr$1; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; Style: WithStatus<{ Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "checkbox"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Action"> & { Action: DomAction; }) | (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; ConsumeWhiteSpace: boolean; DataInstanceName: string; DataInstanceElementOutput: "Output" | "NoOutput"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; RowsOrColumnsCount: number; GrowDirection: "Column" | "ColumnReverse" | "Row" | "RowReverse"; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; ReportItems: ReportItemBase[]; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "list"; }, "Filters"> & { Filters: Filters; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; }, "Action"> & { Action: DomAction; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & OptionalTempWidthHeight) | (Omit; Direction: "Ascending" | "Descending"; }[]; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; TableColumns: { Type: "tablecolumn"; Width: string; FixedHeader: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; AutoWidth: "None" | "Proportional"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; TableGroups: { Type: "tablegroup"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; }[]; Details: { Type: "tabledetails"; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; MaxDetailsPerPage: Expr$1; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "table"; }, "Header"> & { Header: (Omit<{ Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "Footer"> & { Footer: (Omit<{ Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "TableColumns"> & { TableColumns: ({ Type: "tablecolumn"; Width: string; FixedHeader: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; AutoWidth: "None" | "Proportional"; } & Selectable$1)[]; }, "Filters"> & { Filters: Filters; }, "Details"> & { Details: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "TableGroups"> & { TableGroups: (Omit[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; } & Selectable$1, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; }, "Header"> & { Header: (Omit<{ Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; })[]; } & Selectable$1) | null; }, "Footer"> & { Footer: (Omit<{ Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; })[]; } & Selectable$1) | null; })[]; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { $width: string; $height: string; }) | (Omit; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; FrozenRows: number; FrozenColumns: number; RepeatColumnHeaders: boolean; RepeatRowHeaders: boolean; GroupsBeforeRowHeaders: number; LayoutDirection: "LTR" | "RTL"; RowHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; ColumnHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; Corner: ({ RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[][]; Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[]; }[]; }; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tablix"; }, "Filters"> & { Filters: Filters; }, "RowHierarchy"> & { RowHierarchy: Omit<{ LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }, "Members"> & { Members: ((({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & { Children: (({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & any)[]; }) & Selectable$1)[]; } & Selectable$1; }, "ColumnHierarchy"> & { ColumnHierarchy: Omit<{ LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }, "Members"> & { Members: ((({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & { Children: (({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & any)[]; }) & Selectable$1)[]; } & Selectable$1; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Corner"> & { Corner: (({ RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } & Selectable$1) | null)[][]; }, "Body"> & { Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[]; }[]; } & Selectable$1; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; } & { $width: string; $height: string; $columns: { collection: TablixColumnExtra[]; }; $rows: { collection: TablixRowExtra[]; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | { $place: { Left: string; Top: string; Width: string; Height: string; }; StartPoint: { X: string; Y: string; }; EndPoint: { X: string; Y: string; }; LineWidth: string; LineStyle: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; LineColor: string; AccessibleDescription: string; Type: "line"; Name: string; Label: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } | ({ PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; KeepTogether: boolean; PageName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; ConsumeWhiteSpace: boolean; Overflow: "Auto" | "Scroll" | "Clip" | "Grow"; LinkToChild: string; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ReportItems: ReportItemBase[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "rectangle"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & OptionalTempWidthHeight) | { Header: (Omit<{ RepeatOnNewPage: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Details: (Omit<{ ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistdetails"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Footer: (Omit<{ RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Groups: { Header: (Omit<{ RepeatOnNewPage: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Footer: (Omit<{ RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Type: "bandedlistgroup"; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }[]; $width: string; Name: string; Label: string; ToolTip: string; Type: "bandedlist"; KeepTogether: boolean; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; DataSetName: string; Filters: Filters; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; NewSection: boolean; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageName: string; ConsumeWhiteSpace: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; $place: { Left: string; Top: string; Width: string; Height: string; }; } | (Omit<{ ReportName: string; NoRowsMessage: string; KeepTogether: boolean; MergeTransactions: boolean; SubstituteThemeOnSubreport: boolean; InheritStyleSheet: boolean; Parameters: { ParameterName: string; Value: Expr$1; Omit: Expr$1; }[]; Style: { Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PageName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "subreport"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Style"> & { Style: { Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; }) | ({ Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; ShapeStyle: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}`; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "shape"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit<{ Style: WithStatus<{ BackgroundColor: string; MaxLevel: Expr$1; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Levels: { Type: "tableofcontentslevel"; LevelName: string; DataElementName: string; DisplayFillCharacters: boolean; DisplayPageNumber: boolean; Style: WithStatus<{ Color: string; BackgroundColor: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; TextIndent: string; LeadingChar: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }>; StyleName: string; }[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tableofcontents"; } & { $style: {}; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Levels"> & { Levels: ({ Type: "tableofcontentslevel"; LevelName: string; DataElementName: string; DisplayFillCharacters: boolean; DisplayPageNumber: boolean; Style: WithStatus<{ Color: string; BackgroundColor: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; TextIndent: string; LeadingChar: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }>; StyleName: string; } & Selectable$1)[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ Value: Expr$1; InvalidBarcodeText: string; Symbology: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1"; CheckSum: boolean; BarHeight: string; CaptionGrouping: boolean; CaptionLocation: "None" | "Above" | "Below"; AztecOptions: { ErrorCorrection: number; Layers: number; Encoding: string; }; Code49Options: { Grouping: boolean; GroupNumber: number; }; DataMatrixOptions: { EccMode: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140"; Ecc200SymbolSize: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48"; Ecc200EncodingMode: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256"; Ecc000_140SymbolSize: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49"; StructuredAppend: boolean; StructureNumber: number; FileIdentifier: number; Encoding: string; }; Ean128Fnc1Options: { Resolution: number; ModuleSize: number; BarAdjust: number; }; Gs1CompositeOptions: { CompositeType: "None" | "CCA"; Value: string; }; MaxiCodeOptions: { Mode: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6"; }; MicroPdf417Options: { CompactionMode: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode"; Version: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44"; SegmentIndex: number; SegmentCount: number; FileID: number; }; MicroQrCodeOptions: { Version: "Auto" | "M1" | "M2" | "M3" | "M4"; ErrorLevel: "Q" | "L" | "M"; Mask: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11"; Encoding: string; }; NarrowBarWidth: string; NWRation: number; Pdf417Options: { Columns: number; Rows: number; ErrorCorrectionLevel: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8"; Pdf417Type: "Normal" | "Simple"; }; QrCodeOptions: { Connection: boolean; ConnectionNumber: number; Version: number; ErrorLevel: "Q" | "L" | "M" | "H"; Mask: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111"; Model: "Model2" | "Model1"; Encoding: string; }; QuietZone: { Left: string; Right: string; Top: string; Bottom: string; }; Rotation: string; RssExpandedStacked: { RowCount: number; }; SupplementOptions: { Value: string; BarHeight: string; CaptionLocation: string; Spacing: string; }; Style: { Color: string; BackgroundColor: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "barcode"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ CustomPaletteInfo: { PaletteId: string | undefined; PaletteName: string | undefined; }; Name: string; Label: string; ToolTip: string; Bar: { BottomWidth: number; NeckHeight: number; Overlap: number; TopWidth: number; Width: number; }; Type: "dvchart"; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; DataSetName: string; Filters: Filters; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; NewSection: boolean; NoRowsMessage: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageName: string; Header: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartheader"; } & Selectable$1; Footer: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartfooter"; } & Selectable$1; AccessibleDescription: string; Plots: (Omit[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Category: { Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }; Details: { Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Color: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Shape: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Size: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Texts: { Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; }; Config: { AxisMode: "Cartesian" | "Radial" | "Polygonal"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Bar: { BottomWidth: number | undefined; NeckHeight: number | undefined; Overlap: number | undefined; TopWidth: number | undefined; Width: number | undefined; }; BarLines: boolean; BarLineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; ClippingMode: "None" | "Clip" | "Fit"; CustomLabels: { Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; }[]; InnerRadius: number; LineAspect: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight"; LineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; Offset: number; Opacity: number; Overlays: { Name: string; Type: "dvchartoverlay"; OverlayType: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline"; Display: "Front" | "Back"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Field: string; DetailLevel: "Group" | "Total"; LegendLabel: string; Value: string; Axis: "X" | "Y"; AggregateType: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile"; Start: number; End: number; Order: number; Period: number; ForwardForecastPeriod: number; BackwardForecastPeriod: number; Intercept: number | null; }[]; Pointers: { Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; }[]; Radial: boolean; ShowNulls: "Gaps" | "Connected" | "Zeros"; StartAngle: number; Style: { BackgroundColor: string; }; SwapAxes: boolean; Sweep: number; SymbolOpacity: number; SymbolSize: number; Symbols: boolean; SymbolShape: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus"; SymbolStyle: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Text: { ConnectingLine: { Border: { Color: string; Style: string; Width: string; }; }; LinePosition: "Center" | "Auto"; Offset: number; OverlappingLabels: "Auto" | "Show" | "Hide"; TextPosition: "Center" | "Auto" | "Inside" | "Outside"; Template: string; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; }; Tooltip: { Template: string; }; Rules: { Name: string; Type: "dvchartrule"; Condition: string; RuleProperties: { TargetProperty: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate"; Value: Expr$1; }[]; }[]; UnpivotData: boolean; }; PlotChartType: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge"; PlotChartSubtype: "Plain" | "Clustered" | "Stacked"; }, "Config"> & { Config: Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Bar: { BottomWidth: number | undefined; NeckHeight: number | undefined; Overlap: number | undefined; TopWidth: number | undefined; Width: number | undefined; }; BarLines: boolean; BarLineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; ClippingMode: "None" | "Clip" | "Fit"; CustomLabels: { Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; }[]; InnerRadius: number; LineAspect: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight"; LineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; Offset: number; Opacity: number; Overlays: { Name: string; Type: "dvchartoverlay"; OverlayType: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline"; Display: "Front" | "Back"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Field: string; DetailLevel: "Group" | "Total"; LegendLabel: string; Value: string; Axis: "X" | "Y"; AggregateType: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile"; Start: number; End: number; Order: number; Period: number; ForwardForecastPeriod: number; BackwardForecastPeriod: number; Intercept: number | null; }[]; Pointers: { Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; }[]; Radial: boolean; ShowNulls: "Gaps" | "Connected" | "Zeros"; StartAngle: number; Style: { BackgroundColor: string; }; SwapAxes: boolean; Sweep: number; SymbolOpacity: number; SymbolSize: number; Symbols: boolean; SymbolShape: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus"; SymbolStyle: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Text: { ConnectingLine: { Border: { Color: string; Style: string; Width: string; }; }; LinePosition: "Center" | "Auto"; Offset: number; OverlappingLabels: "Auto" | "Show" | "Hide"; TextPosition: "Center" | "Auto" | "Inside" | "Outside"; Template: string; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; }; Tooltip: { Template: string; }; Rules: { Name: string; Type: "dvchartrule"; Condition: string; RuleProperties: { TargetProperty: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate"; Value: Expr$1; }[]; }[]; UnpivotData: boolean; }, "Action"> & { Action: DomAction; }, "Pointers"> & { Pointers: ({ Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; } & Selectable$1)[]; }, "CustomLabels"> & { CustomLabels: ({ Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; } & Selectable$1)[]; }; }, "Encodings"> & { Encodings: Omit[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Category: { Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }; Details: { Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Color: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Shape: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Size: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Texts: { Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; }, "Color"> & { Color: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Shape"> & { Shape: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Size"> & { Size: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Category"> & { Category: Omit<{ Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; } & Selectable$1; }, "Values"> & { Values: (Omit<{ Type: "dvchartvalueaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: EncodingValuesField; } & Selectable$1)[]; }, "Details"> & { Details: (Omit<{ Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: EncodingDetailsField; } & Selectable$1)[]; }, "Texts"> & { Texts: (Omit<{ Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: TextEncodingField; } & Selectable$1)[]; }; } & Selectable$1)[]; Palette: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen"; CustomPalette: string[]; Legend: { Wrapping: boolean; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartgloballegend"; } & Selectable$1; PlotArea: Omit; Max: Expr$1; Min: Expr$1; MinorGrid: boolean; MinorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorTicks: "None" | "Inside" | "Outside" | "Cross"; MinorTickSize: string; MinorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorUnit: Expr$1; Origin: Expr$1; OverlappingLabels: "Auto" | "Show"; Plots: string[]; Position: "None" | "Near" | "Far"; Reversed: boolean; Scale: "Linear" | "Logarithmic" | "Ordinal" | "Percentage"; Style: { Border: { Color: string; Style: string; Width: string; }; }; TextStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; TitleStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; MaxHeight: number; MaxWidth: number; Width: number | null; Height: number | null; LabelRowCount: number; }[]; Legends: { MaxHeight: number; MaxWidth: number; Title: string; LegendType: "Color" | "Shape" | "Size"; IconColor: string; RangeOptions: { Title: string; To: number; }[]; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartlegend"; }[]; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; } & Selectable$1, "Legends"> & { Legends: ({ MaxHeight: number; MaxWidth: number; Title: string; LegendType: "Color" | "Shape" | "Size"; IconColor: string; RangeOptions: { Title: string; To: number; }[]; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartlegend"; } & Selectable$1)[]; }, "Axes"> & { Axes: ({ Type: "dvchartaxis"; AxisLine: boolean; AxisType: "X" | "Y"; DateMode: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year"; Format: string; LabelAngle: number; LabelField: string; Labels: boolean; LabelStyle: { WritingMode: "lr-tb" | "tb-rl" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; LineStyle: { Border: { Color: string; Style: string; Width: string; }; }; LogBase: number; MajorGrid: boolean; MajorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorTicks: "None" | "Inside" | "Outside" | "Cross"; MajorTickSize: string; MajorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorUnit: Expr$1; Max: Expr$1; Min: Expr$1; MinorGrid: boolean; MinorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorTicks: "None" | "Inside" | "Outside" | "Cross"; MinorTickSize: string; MinorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorUnit: Expr$1; Origin: Expr$1; OverlappingLabels: "Auto" | "Show"; Plots: string[]; Position: "None" | "Near" | "Far"; Reversed: boolean; Scale: "Linear" | "Logarithmic" | "Ordinal" | "Percentage"; Style: { Border: { Color: string; Style: string; Width: string; }; }; TextStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; TitleStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; MaxHeight: number; MaxWidth: number; Width: number | null; Height: number | null; LabelRowCount: number; } & Selectable$1)[]; }; ReportStyle: { StyleId: string; StyleName: string; }; Style: { BackgroundColor: string; BackgroundGradientEndColor: string; BackgroundGradientType: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}`; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; Sizing: "Clip" | "Fit" | "AutoSize" | "FitProportional"; HorizontalAlignment: "Center" | "Left" | "Right" | `=${string}`; VerticalAlignment: "Top" | "Middle" | "Bottom" | `=${string}`; AccessibleDescription: string; Style: WithStatus<{ PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Type: "image"; Name: string; Label: string; ToolTip: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Action"> & { Action: DomAction; }) | ({ LabelFormat: string; LabelFontFamily: string; LabelFontSize: string; LabelFontStyle: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}`; LabelFontColor: string; Orientation: "Horizontal" | "Vertical"; ShowLabels: boolean; TargetShape: "Square" | "Dot" | "Line"; TargetLineColor: string; TargetLineWidth: string; TickMarks: "None" | "Inside" | "Outside"; TicksLineColor: string; TicksLineWidth: string; ValueColor: string; BestValue: Expr$1; Interval: Expr$1; Range1Boundary: Expr$1; Range2Boundary: Expr$1; TargetValue: Expr$1; Value: Expr$1; WorstValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "bullet"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ EncodeMailMergeFields: boolean; Html: string; MailMergeFields: { Name: string; Value: string; }[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "formattedtext"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ((((({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "Text"; Password: boolean; Multiline: boolean; SpellCheck: boolean; MaxLength: number | null; Value: string; Style: { Color: string; BackgroundColor: string; Format: string; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; }) | ({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "CheckBox"; Checked: Expr$1; CheckStyle: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star"; CheckSize: string; Style: { Color: string; BackgroundColor: string; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; })) & { ReportStyle: { StyleId: string; StyleName: string; }; }) & { $hiddenCheckboxProps: { Checked: string; CheckStyle: string; CheckSize: string; }; $hiddenTextProps: { Password: boolean; Multiline: boolean; SpellCheck: boolean; MaxLength: null; Value: string; }; }) & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit; } & { $legacy?: any; })[]; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; FillColor: string; GradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; GradientEndColor: string; LineColor: string; LineWidth: string; MarkerColor: string; MarkerVisibility: boolean; MaximumColumnWidth: string; RangeFillColor: string; RangeGradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; RangeGradientEndColor: string; RangeLowerBound: Expr$1; RangeUpperBound: Expr$1; RangeVisibility: boolean; SparklineType: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar"; SeriesValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "sparkline"; }, "Filters"> & { Filters: Filters; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (((({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "None"; Paragraphs: { TextRuns: ({ Type: "text"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Value: string; StyleName: string; Style: { Subscript: Expr$1 | undefined; Superscript: Expr$1 | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ToolTip: string; } | { Type: "image"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Source: "External" | "Embedded" | "Database"; Value: string; Width: string; Height: string; MIMEType: string; ToolTip: string; })[]; LeftIndent: string | undefined; RightIndent: string | undefined; HangingIndent: string | undefined; StyleName: string; Style: { TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ListStyle: "None" | "Numbered" | "Bullet"; ListLevel: number; ListItemIndex: number; SpaceBefore: string | undefined; SpaceAfter: string | undefined; ListStyleType: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[]; }) | ({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "HTML"; Value: Expr$1; })) & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) & { ReportStyle: { StyleId: string; StyleName: string; }; }) | ({ ReportPart: string; Library: string; Properties: { Name: string; Value: string | number | null; }[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "partitem"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ Text: string; ConsumeWhiteSpace: boolean; ReportItems: ReportItemBase[]; Type: "contentplaceholder"; Name: string; ZIndex: number; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & OptionalTempWidthHeight & { $inChildReport: boolean; }), string>; encode: (i: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanGrow: boolean; CanShrink: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; ToggleImage: { InitialState: Expr$1; }; UserSort: { SortExpression: string; SortExpressionScope: string; SortTarget: string; }; Value: Expr$1; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; LineSpacing: string; CharacterSpacing: string; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; Color: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "textbox"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Action"> & { Action: DomAction; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; LineSpacing: string; CharacterSpacing: string; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; Color: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; }) | (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CheckAlignment: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight"; Text: string; Checked: Expr$1; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; Style: WithStatus<{ Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "checkbox"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Action"> & { Action: DomAction; }) | (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; ConsumeWhiteSpace: boolean; DataInstanceName: string; DataInstanceElementOutput: "Output" | "NoOutput"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; RowsOrColumnsCount: number; GrowDirection: "Column" | "ColumnReverse" | "Row" | "RowReverse"; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; ReportItems: ReportItemBase[]; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "list"; }, "Filters"> & { Filters: Filters; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; }, "Action"> & { Action: DomAction; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & OptionalTempWidthHeight) | (Omit; Direction: "Ascending" | "Descending"; }[]; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; TableColumns: { Type: "tablecolumn"; Width: string; FixedHeader: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; AutoWidth: "None" | "Proportional"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; TableGroups: { Type: "tablegroup"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; }[]; Details: { Type: "tabledetails"; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; MaxDetailsPerPage: Expr$1; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "table"; }, "Header"> & { Header: (Omit<{ Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "Footer"> & { Footer: (Omit<{ Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "TableColumns"> & { TableColumns: ({ Type: "tablecolumn"; Width: string; FixedHeader: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; AutoWidth: "None" | "Proportional"; } & Selectable$1)[]; }, "Filters"> & { Filters: Filters; }, "Details"> & { Details: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "TableGroups"> & { TableGroups: (Omit[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; } & Selectable$1, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; }, "Header"> & { Header: (Omit<{ Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; })[]; } & Selectable$1) | null; }, "Footer"> & { Footer: (Omit<{ Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; })[]; } & Selectable$1) | null; })[]; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { $width: string; $height: string; }) | (Omit; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; FrozenRows: number; FrozenColumns: number; RepeatColumnHeaders: boolean; RepeatRowHeaders: boolean; GroupsBeforeRowHeaders: number; LayoutDirection: "LTR" | "RTL"; RowHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; ColumnHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; Corner: ({ RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[][]; Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[]; }[]; }; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tablix"; }, "Filters"> & { Filters: Filters; }, "RowHierarchy"> & { RowHierarchy: Omit<{ LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }, "Members"> & { Members: ((({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & { Children: (({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & any)[]; }) & Selectable$1)[]; } & Selectable$1; }, "ColumnHierarchy"> & { ColumnHierarchy: Omit<{ LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }, "Members"> & { Members: ((({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & { Children: (({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & any)[]; }) & Selectable$1)[]; } & Selectable$1; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Corner"> & { Corner: (({ RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } & Selectable$1) | null)[][]; }, "Body"> & { Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[]; }[]; } & Selectable$1; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; } & { $width: string; $height: string; $columns: { collection: TablixColumnExtra[]; }; $rows: { collection: TablixRowExtra[]; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | { $place: { Left: string; Top: string; Width: string; Height: string; }; StartPoint: { X: string; Y: string; }; EndPoint: { X: string; Y: string; }; LineWidth: string; LineStyle: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; LineColor: string; AccessibleDescription: string; Type: "line"; Name: string; Label: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } | ({ PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; KeepTogether: boolean; PageName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; ConsumeWhiteSpace: boolean; Overflow: "Auto" | "Scroll" | "Clip" | "Grow"; LinkToChild: string; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ReportItems: ReportItemBase[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "rectangle"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & OptionalTempWidthHeight) | { Header: (Omit<{ RepeatOnNewPage: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Details: (Omit<{ ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistdetails"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Footer: (Omit<{ RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Groups: { Header: (Omit<{ RepeatOnNewPage: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Footer: (Omit<{ RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Type: "bandedlistgroup"; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }[]; $width: string; Name: string; Label: string; ToolTip: string; Type: "bandedlist"; KeepTogether: boolean; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; DataSetName: string; Filters: Filters; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; NewSection: boolean; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageName: string; ConsumeWhiteSpace: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; $place: { Left: string; Top: string; Width: string; Height: string; }; } | (Omit<{ ReportName: string; NoRowsMessage: string; KeepTogether: boolean; MergeTransactions: boolean; SubstituteThemeOnSubreport: boolean; InheritStyleSheet: boolean; Parameters: { ParameterName: string; Value: Expr$1; Omit: Expr$1; }[]; Style: { Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PageName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "subreport"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Style"> & { Style: { Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; }) | ({ Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; ShapeStyle: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}`; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "shape"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit<{ Style: WithStatus<{ BackgroundColor: string; MaxLevel: Expr$1; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Levels: { Type: "tableofcontentslevel"; LevelName: string; DataElementName: string; DisplayFillCharacters: boolean; DisplayPageNumber: boolean; Style: WithStatus<{ Color: string; BackgroundColor: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; TextIndent: string; LeadingChar: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }>; StyleName: string; }[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tableofcontents"; } & { $style: {}; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Levels"> & { Levels: ({ Type: "tableofcontentslevel"; LevelName: string; DataElementName: string; DisplayFillCharacters: boolean; DisplayPageNumber: boolean; Style: WithStatus<{ Color: string; BackgroundColor: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; TextIndent: string; LeadingChar: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }>; StyleName: string; } & Selectable$1)[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ Value: Expr$1; InvalidBarcodeText: string; Symbology: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1"; CheckSum: boolean; BarHeight: string; CaptionGrouping: boolean; CaptionLocation: "None" | "Above" | "Below"; AztecOptions: { ErrorCorrection: number; Layers: number; Encoding: string; }; Code49Options: { Grouping: boolean; GroupNumber: number; }; DataMatrixOptions: { EccMode: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140"; Ecc200SymbolSize: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48"; Ecc200EncodingMode: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256"; Ecc000_140SymbolSize: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49"; StructuredAppend: boolean; StructureNumber: number; FileIdentifier: number; Encoding: string; }; Ean128Fnc1Options: { Resolution: number; ModuleSize: number; BarAdjust: number; }; Gs1CompositeOptions: { CompositeType: "None" | "CCA"; Value: string; }; MaxiCodeOptions: { Mode: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6"; }; MicroPdf417Options: { CompactionMode: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode"; Version: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44"; SegmentIndex: number; SegmentCount: number; FileID: number; }; MicroQrCodeOptions: { Version: "Auto" | "M1" | "M2" | "M3" | "M4"; ErrorLevel: "Q" | "L" | "M"; Mask: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11"; Encoding: string; }; NarrowBarWidth: string; NWRation: number; Pdf417Options: { Columns: number; Rows: number; ErrorCorrectionLevel: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8"; Pdf417Type: "Normal" | "Simple"; }; QrCodeOptions: { Connection: boolean; ConnectionNumber: number; Version: number; ErrorLevel: "Q" | "L" | "M" | "H"; Mask: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111"; Model: "Model2" | "Model1"; Encoding: string; }; QuietZone: { Left: string; Right: string; Top: string; Bottom: string; }; Rotation: string; RssExpandedStacked: { RowCount: number; }; SupplementOptions: { Value: string; BarHeight: string; CaptionLocation: string; Spacing: string; }; Style: { Color: string; BackgroundColor: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "barcode"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ CustomPaletteInfo: { PaletteId: string | undefined; PaletteName: string | undefined; }; Name: string; Label: string; ToolTip: string; Bar: { BottomWidth: number; NeckHeight: number; Overlap: number; TopWidth: number; Width: number; }; Type: "dvchart"; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; DataSetName: string; Filters: Filters; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; NewSection: boolean; NoRowsMessage: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageName: string; Header: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartheader"; } & Selectable$1; Footer: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartfooter"; } & Selectable$1; AccessibleDescription: string; Plots: (Omit[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Category: { Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }; Details: { Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Color: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Shape: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Size: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Texts: { Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; }; Config: { AxisMode: "Cartesian" | "Radial" | "Polygonal"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Bar: { BottomWidth: number | undefined; NeckHeight: number | undefined; Overlap: number | undefined; TopWidth: number | undefined; Width: number | undefined; }; BarLines: boolean; BarLineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; ClippingMode: "None" | "Clip" | "Fit"; CustomLabels: { Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; }[]; InnerRadius: number; LineAspect: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight"; LineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; Offset: number; Opacity: number; Overlays: { Name: string; Type: "dvchartoverlay"; OverlayType: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline"; Display: "Front" | "Back"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Field: string; DetailLevel: "Group" | "Total"; LegendLabel: string; Value: string; Axis: "X" | "Y"; AggregateType: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile"; Start: number; End: number; Order: number; Period: number; ForwardForecastPeriod: number; BackwardForecastPeriod: number; Intercept: number | null; }[]; Pointers: { Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; }[]; Radial: boolean; ShowNulls: "Gaps" | "Connected" | "Zeros"; StartAngle: number; Style: { BackgroundColor: string; }; SwapAxes: boolean; Sweep: number; SymbolOpacity: number; SymbolSize: number; Symbols: boolean; SymbolShape: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus"; SymbolStyle: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Text: { ConnectingLine: { Border: { Color: string; Style: string; Width: string; }; }; LinePosition: "Center" | "Auto"; Offset: number; OverlappingLabels: "Auto" | "Show" | "Hide"; TextPosition: "Center" | "Auto" | "Inside" | "Outside"; Template: string; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; }; Tooltip: { Template: string; }; Rules: { Name: string; Type: "dvchartrule"; Condition: string; RuleProperties: { TargetProperty: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate"; Value: Expr$1; }[]; }[]; UnpivotData: boolean; }; PlotChartType: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge"; PlotChartSubtype: "Plain" | "Clustered" | "Stacked"; }, "Config"> & { Config: Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Bar: { BottomWidth: number | undefined; NeckHeight: number | undefined; Overlap: number | undefined; TopWidth: number | undefined; Width: number | undefined; }; BarLines: boolean; BarLineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; ClippingMode: "None" | "Clip" | "Fit"; CustomLabels: { Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; }[]; InnerRadius: number; LineAspect: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight"; LineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; Offset: number; Opacity: number; Overlays: { Name: string; Type: "dvchartoverlay"; OverlayType: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline"; Display: "Front" | "Back"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Field: string; DetailLevel: "Group" | "Total"; LegendLabel: string; Value: string; Axis: "X" | "Y"; AggregateType: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile"; Start: number; End: number; Order: number; Period: number; ForwardForecastPeriod: number; BackwardForecastPeriod: number; Intercept: number | null; }[]; Pointers: { Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; }[]; Radial: boolean; ShowNulls: "Gaps" | "Connected" | "Zeros"; StartAngle: number; Style: { BackgroundColor: string; }; SwapAxes: boolean; Sweep: number; SymbolOpacity: number; SymbolSize: number; Symbols: boolean; SymbolShape: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus"; SymbolStyle: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Text: { ConnectingLine: { Border: { Color: string; Style: string; Width: string; }; }; LinePosition: "Center" | "Auto"; Offset: number; OverlappingLabels: "Auto" | "Show" | "Hide"; TextPosition: "Center" | "Auto" | "Inside" | "Outside"; Template: string; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; }; Tooltip: { Template: string; }; Rules: { Name: string; Type: "dvchartrule"; Condition: string; RuleProperties: { TargetProperty: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate"; Value: Expr$1; }[]; }[]; UnpivotData: boolean; }, "Action"> & { Action: DomAction; }, "Pointers"> & { Pointers: ({ Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; } & Selectable$1)[]; }, "CustomLabels"> & { CustomLabels: ({ Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; } & Selectable$1)[]; }; }, "Encodings"> & { Encodings: Omit[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Category: { Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }; Details: { Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Color: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Shape: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Size: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Texts: { Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; }, "Color"> & { Color: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Shape"> & { Shape: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Size"> & { Size: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Category"> & { Category: Omit<{ Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; } & Selectable$1; }, "Values"> & { Values: (Omit<{ Type: "dvchartvalueaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: EncodingValuesField; } & Selectable$1)[]; }, "Details"> & { Details: (Omit<{ Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: EncodingDetailsField; } & Selectable$1)[]; }, "Texts"> & { Texts: (Omit<{ Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: TextEncodingField; } & Selectable$1)[]; }; } & Selectable$1)[]; Palette: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen"; CustomPalette: string[]; Legend: { Wrapping: boolean; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartgloballegend"; } & Selectable$1; PlotArea: Omit; Max: Expr$1; Min: Expr$1; MinorGrid: boolean; MinorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorTicks: "None" | "Inside" | "Outside" | "Cross"; MinorTickSize: string; MinorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorUnit: Expr$1; Origin: Expr$1; OverlappingLabels: "Auto" | "Show"; Plots: string[]; Position: "None" | "Near" | "Far"; Reversed: boolean; Scale: "Linear" | "Logarithmic" | "Ordinal" | "Percentage"; Style: { Border: { Color: string; Style: string; Width: string; }; }; TextStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; TitleStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; MaxHeight: number; MaxWidth: number; Width: number | null; Height: number | null; LabelRowCount: number; }[]; Legends: { MaxHeight: number; MaxWidth: number; Title: string; LegendType: "Color" | "Shape" | "Size"; IconColor: string; RangeOptions: { Title: string; To: number; }[]; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartlegend"; }[]; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; } & Selectable$1, "Legends"> & { Legends: ({ MaxHeight: number; MaxWidth: number; Title: string; LegendType: "Color" | "Shape" | "Size"; IconColor: string; RangeOptions: { Title: string; To: number; }[]; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartlegend"; } & Selectable$1)[]; }, "Axes"> & { Axes: ({ Type: "dvchartaxis"; AxisLine: boolean; AxisType: "X" | "Y"; DateMode: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year"; Format: string; LabelAngle: number; LabelField: string; Labels: boolean; LabelStyle: { WritingMode: "lr-tb" | "tb-rl" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; LineStyle: { Border: { Color: string; Style: string; Width: string; }; }; LogBase: number; MajorGrid: boolean; MajorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorTicks: "None" | "Inside" | "Outside" | "Cross"; MajorTickSize: string; MajorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorUnit: Expr$1; Max: Expr$1; Min: Expr$1; MinorGrid: boolean; MinorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorTicks: "None" | "Inside" | "Outside" | "Cross"; MinorTickSize: string; MinorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorUnit: Expr$1; Origin: Expr$1; OverlappingLabels: "Auto" | "Show"; Plots: string[]; Position: "None" | "Near" | "Far"; Reversed: boolean; Scale: "Linear" | "Logarithmic" | "Ordinal" | "Percentage"; Style: { Border: { Color: string; Style: string; Width: string; }; }; TextStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; TitleStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; MaxHeight: number; MaxWidth: number; Width: number | null; Height: number | null; LabelRowCount: number; } & Selectable$1)[]; }; ReportStyle: { StyleId: string; StyleName: string; }; Style: { BackgroundColor: string; BackgroundGradientEndColor: string; BackgroundGradientType: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}`; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; Sizing: "Clip" | "Fit" | "AutoSize" | "FitProportional"; HorizontalAlignment: "Center" | "Left" | "Right" | `=${string}`; VerticalAlignment: "Top" | "Middle" | "Bottom" | `=${string}`; AccessibleDescription: string; Style: WithStatus<{ PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Type: "image"; Name: string; Label: string; ToolTip: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Action"> & { Action: DomAction; }) | ({ LabelFormat: string; LabelFontFamily: string; LabelFontSize: string; LabelFontStyle: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}`; LabelFontColor: string; Orientation: "Horizontal" | "Vertical"; ShowLabels: boolean; TargetShape: "Square" | "Dot" | "Line"; TargetLineColor: string; TargetLineWidth: string; TickMarks: "None" | "Inside" | "Outside"; TicksLineColor: string; TicksLineWidth: string; ValueColor: string; BestValue: Expr$1; Interval: Expr$1; Range1Boundary: Expr$1; Range2Boundary: Expr$1; TargetValue: Expr$1; Value: Expr$1; WorstValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "bullet"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ EncodeMailMergeFields: boolean; Html: string; MailMergeFields: { Name: string; Value: string; }[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "formattedtext"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ((((({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "Text"; Password: boolean; Multiline: boolean; SpellCheck: boolean; MaxLength: number | null; Value: string; Style: { Color: string; BackgroundColor: string; Format: string; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; }) | ({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "CheckBox"; Checked: Expr$1; CheckStyle: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star"; CheckSize: string; Style: { Color: string; BackgroundColor: string; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; })) & { ReportStyle: { StyleId: string; StyleName: string; }; }) & { $hiddenCheckboxProps: { Checked: string; CheckStyle: string; CheckSize: string; }; $hiddenTextProps: { Password: boolean; Multiline: boolean; SpellCheck: boolean; MaxLength: null; Value: string; }; }) & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit; } & { $legacy?: any; })[]; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; FillColor: string; GradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; GradientEndColor: string; LineColor: string; LineWidth: string; MarkerColor: string; MarkerVisibility: boolean; MaximumColumnWidth: string; RangeFillColor: string; RangeGradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; RangeGradientEndColor: string; RangeLowerBound: Expr$1; RangeUpperBound: Expr$1; RangeVisibility: boolean; SparklineType: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar"; SeriesValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "sparkline"; }, "Filters"> & { Filters: Filters; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (((({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "None"; Paragraphs: { TextRuns: ({ Type: "text"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Value: string; StyleName: string; Style: { Subscript: Expr$1 | undefined; Superscript: Expr$1 | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ToolTip: string; } | { Type: "image"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Source: "External" | "Embedded" | "Database"; Value: string; Width: string; Height: string; MIMEType: string; ToolTip: string; })[]; LeftIndent: string | undefined; RightIndent: string | undefined; HangingIndent: string | undefined; StyleName: string; Style: { TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ListStyle: "None" | "Numbered" | "Bullet"; ListLevel: number; ListItemIndex: number; SpaceBefore: string | undefined; SpaceAfter: string | undefined; ListStyleType: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[]; }) | ({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "HTML"; Value: Expr$1; })) & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) & { ReportStyle: { StyleId: string; StyleName: string; }; }) | ({ ReportPart: string; Library: string; Properties: { Name: string; Value: string | number | null; }[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "partitem"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ Text: string; ConsumeWhiteSpace: boolean; ReportItems: ReportItemBase[]; Type: "contentplaceholder"; Name: string; ZIndex: number; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & OptionalTempWidthHeight & { $inChildReport: boolean; })) => { Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; /** Transform generic band item to a designer's band: * 1) Extracts Height to a $place, and writes it back * 2) makes it Selectable * 3) adds default LayerName **/ Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: RdlReportItemBase[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "contentplaceholder" | undefined; Text?: string | undefined; ZIndex?: number | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }); }; ReportItemOrUnknown: Decoder$2<{ Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; /** Transform generic band item to a designer's band: * 1) Extracts Height to a $place, and writes it back * 2) makes it Selectable * 3) adds default LayerName **/ Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: RdlReportItemBase[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "contentplaceholder" | undefined; Text?: string | undefined; ZIndex?: number | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ [x: string]: any; Name: string; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }), (((Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanGrow: boolean; CanShrink: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; ToggleImage: { InitialState: Expr$1; }; UserSort: { SortExpression: string; SortExpressionScope: string; SortTarget: string; }; Value: Expr$1; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; LineSpacing: string; CharacterSpacing: string; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; Color: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "textbox"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Action"> & { Action: DomAction; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; LineSpacing: string; CharacterSpacing: string; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; Color: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; }) | (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CheckAlignment: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight"; Text: string; Checked: Expr$1; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; Style: WithStatus<{ Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "checkbox"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Action"> & { Action: DomAction; }) | (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; ConsumeWhiteSpace: boolean; DataInstanceName: string; DataInstanceElementOutput: "Output" | "NoOutput"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; RowsOrColumnsCount: number; GrowDirection: "Column" | "ColumnReverse" | "Row" | "RowReverse"; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; ReportItems: ReportItemBase[]; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "list"; }, "Filters"> & { Filters: Filters; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; }, "Action"> & { Action: DomAction; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & OptionalTempWidthHeight) | (Omit; Direction: "Ascending" | "Descending"; }[]; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; TableColumns: { Type: "tablecolumn"; Width: string; FixedHeader: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; AutoWidth: "None" | "Proportional"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; TableGroups: { Type: "tablegroup"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; }[]; Details: { Type: "tabledetails"; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; MaxDetailsPerPage: Expr$1; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "table"; }, "Header"> & { Header: (Omit<{ Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "Footer"> & { Footer: (Omit<{ Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "TableColumns"> & { TableColumns: ({ Type: "tablecolumn"; Width: string; FixedHeader: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; AutoWidth: "None" | "Proportional"; } & Selectable$1)[]; }, "Filters"> & { Filters: Filters; }, "Details"> & { Details: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "TableGroups"> & { TableGroups: (Omit[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; } & Selectable$1, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; }, "Header"> & { Header: (Omit<{ Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; })[]; } & Selectable$1) | null; }, "Footer"> & { Footer: (Omit<{ Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; })[]; } & Selectable$1) | null; })[]; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { $width: string; $height: string; }) | (Omit; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; FrozenRows: number; FrozenColumns: number; RepeatColumnHeaders: boolean; RepeatRowHeaders: boolean; GroupsBeforeRowHeaders: number; LayoutDirection: "LTR" | "RTL"; RowHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; ColumnHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; Corner: ({ RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[][]; Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[]; }[]; }; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tablix"; }, "Filters"> & { Filters: Filters; }, "RowHierarchy"> & { RowHierarchy: Omit<{ LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }, "Members"> & { Members: ((({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & { Children: (({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & any)[]; }) & Selectable$1)[]; } & Selectable$1; }, "ColumnHierarchy"> & { ColumnHierarchy: Omit<{ LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }, "Members"> & { Members: ((({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & { Children: (({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & any)[]; }) & Selectable$1)[]; } & Selectable$1; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Corner"> & { Corner: (({ RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } & Selectable$1) | null)[][]; }, "Body"> & { Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[]; }[]; } & Selectable$1; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; } & { $width: string; $height: string; $columns: { collection: TablixColumnExtra[]; }; $rows: { collection: TablixRowExtra[]; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | { $place: { Left: string; Top: string; Width: string; Height: string; }; StartPoint: { X: string; Y: string; }; EndPoint: { X: string; Y: string; }; LineWidth: string; LineStyle: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; LineColor: string; AccessibleDescription: string; Type: "line"; Name: string; Label: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } | ({ PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; KeepTogether: boolean; PageName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; ConsumeWhiteSpace: boolean; Overflow: "Auto" | "Scroll" | "Clip" | "Grow"; LinkToChild: string; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ReportItems: ReportItemBase[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "rectangle"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & OptionalTempWidthHeight) | { Header: (Omit<{ RepeatOnNewPage: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Details: (Omit<{ ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistdetails"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Footer: (Omit<{ RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Groups: { Header: (Omit<{ RepeatOnNewPage: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Footer: (Omit<{ RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Type: "bandedlistgroup"; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }[]; $width: string; Name: string; Label: string; ToolTip: string; Type: "bandedlist"; KeepTogether: boolean; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; DataSetName: string; Filters: Filters; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; NewSection: boolean; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageName: string; ConsumeWhiteSpace: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; $place: { Left: string; Top: string; Width: string; Height: string; }; } | (Omit<{ ReportName: string; NoRowsMessage: string; KeepTogether: boolean; MergeTransactions: boolean; SubstituteThemeOnSubreport: boolean; InheritStyleSheet: boolean; Parameters: { ParameterName: string; Value: Expr$1; Omit: Expr$1; }[]; Style: { Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PageName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "subreport"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Style"> & { Style: { Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; }) | ({ Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; ShapeStyle: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}`; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "shape"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit<{ Style: WithStatus<{ BackgroundColor: string; MaxLevel: Expr$1; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Levels: { Type: "tableofcontentslevel"; LevelName: string; DataElementName: string; DisplayFillCharacters: boolean; DisplayPageNumber: boolean; Style: WithStatus<{ Color: string; BackgroundColor: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; TextIndent: string; LeadingChar: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }>; StyleName: string; }[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tableofcontents"; } & { $style: {}; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Levels"> & { Levels: ({ Type: "tableofcontentslevel"; LevelName: string; DataElementName: string; DisplayFillCharacters: boolean; DisplayPageNumber: boolean; Style: WithStatus<{ Color: string; BackgroundColor: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; TextIndent: string; LeadingChar: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }>; StyleName: string; } & Selectable$1)[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ Value: Expr$1; InvalidBarcodeText: string; Symbology: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1"; CheckSum: boolean; BarHeight: string; CaptionGrouping: boolean; CaptionLocation: "None" | "Above" | "Below"; AztecOptions: { ErrorCorrection: number; Layers: number; Encoding: string; }; Code49Options: { Grouping: boolean; GroupNumber: number; }; DataMatrixOptions: { EccMode: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140"; Ecc200SymbolSize: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48"; Ecc200EncodingMode: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256"; Ecc000_140SymbolSize: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49"; StructuredAppend: boolean; StructureNumber: number; FileIdentifier: number; Encoding: string; }; Ean128Fnc1Options: { Resolution: number; ModuleSize: number; BarAdjust: number; }; Gs1CompositeOptions: { CompositeType: "None" | "CCA"; Value: string; }; MaxiCodeOptions: { Mode: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6"; }; MicroPdf417Options: { CompactionMode: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode"; Version: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44"; SegmentIndex: number; SegmentCount: number; FileID: number; }; MicroQrCodeOptions: { Version: "Auto" | "M1" | "M2" | "M3" | "M4"; ErrorLevel: "Q" | "L" | "M"; Mask: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11"; Encoding: string; }; NarrowBarWidth: string; NWRation: number; Pdf417Options: { Columns: number; Rows: number; ErrorCorrectionLevel: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8"; Pdf417Type: "Normal" | "Simple"; }; QrCodeOptions: { Connection: boolean; ConnectionNumber: number; Version: number; ErrorLevel: "Q" | "L" | "M" | "H"; Mask: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111"; Model: "Model2" | "Model1"; Encoding: string; }; QuietZone: { Left: string; Right: string; Top: string; Bottom: string; }; Rotation: string; RssExpandedStacked: { RowCount: number; }; SupplementOptions: { Value: string; BarHeight: string; CaptionLocation: string; Spacing: string; }; Style: { Color: string; BackgroundColor: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "barcode"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ CustomPaletteInfo: { PaletteId: string | undefined; PaletteName: string | undefined; }; Name: string; Label: string; ToolTip: string; Bar: { BottomWidth: number; NeckHeight: number; Overlap: number; TopWidth: number; Width: number; }; Type: "dvchart"; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; DataSetName: string; Filters: Filters; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; NewSection: boolean; NoRowsMessage: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageName: string; Header: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartheader"; } & Selectable$1; Footer: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartfooter"; } & Selectable$1; AccessibleDescription: string; Plots: (Omit[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Category: { Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }; Details: { Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Color: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Shape: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Size: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Texts: { Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; }; Config: { AxisMode: "Cartesian" | "Radial" | "Polygonal"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Bar: { BottomWidth: number | undefined; NeckHeight: number | undefined; Overlap: number | undefined; TopWidth: number | undefined; Width: number | undefined; }; BarLines: boolean; BarLineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; ClippingMode: "None" | "Clip" | "Fit"; CustomLabels: { Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; }[]; InnerRadius: number; LineAspect: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight"; LineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; Offset: number; Opacity: number; Overlays: { Name: string; Type: "dvchartoverlay"; OverlayType: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline"; Display: "Front" | "Back"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Field: string; DetailLevel: "Group" | "Total"; LegendLabel: string; Value: string; Axis: "X" | "Y"; AggregateType: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile"; Start: number; End: number; Order: number; Period: number; ForwardForecastPeriod: number; BackwardForecastPeriod: number; Intercept: number | null; }[]; Pointers: { Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; }[]; Radial: boolean; ShowNulls: "Gaps" | "Connected" | "Zeros"; StartAngle: number; Style: { BackgroundColor: string; }; SwapAxes: boolean; Sweep: number; SymbolOpacity: number; SymbolSize: number; Symbols: boolean; SymbolShape: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus"; SymbolStyle: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Text: { ConnectingLine: { Border: { Color: string; Style: string; Width: string; }; }; LinePosition: "Center" | "Auto"; Offset: number; OverlappingLabels: "Auto" | "Show" | "Hide"; TextPosition: "Center" | "Auto" | "Inside" | "Outside"; Template: string; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; }; Tooltip: { Template: string; }; Rules: { Name: string; Type: "dvchartrule"; Condition: string; RuleProperties: { TargetProperty: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate"; Value: Expr$1; }[]; }[]; UnpivotData: boolean; }; PlotChartType: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge"; PlotChartSubtype: "Plain" | "Clustered" | "Stacked"; }, "Config"> & { Config: Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Bar: { BottomWidth: number | undefined; NeckHeight: number | undefined; Overlap: number | undefined; TopWidth: number | undefined; Width: number | undefined; }; BarLines: boolean; BarLineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; ClippingMode: "None" | "Clip" | "Fit"; CustomLabels: { Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; }[]; InnerRadius: number; LineAspect: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight"; LineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; Offset: number; Opacity: number; Overlays: { Name: string; Type: "dvchartoverlay"; OverlayType: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline"; Display: "Front" | "Back"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Field: string; DetailLevel: "Group" | "Total"; LegendLabel: string; Value: string; Axis: "X" | "Y"; AggregateType: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile"; Start: number; End: number; Order: number; Period: number; ForwardForecastPeriod: number; BackwardForecastPeriod: number; Intercept: number | null; }[]; Pointers: { Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; }[]; Radial: boolean; ShowNulls: "Gaps" | "Connected" | "Zeros"; StartAngle: number; Style: { BackgroundColor: string; }; SwapAxes: boolean; Sweep: number; SymbolOpacity: number; SymbolSize: number; Symbols: boolean; SymbolShape: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus"; SymbolStyle: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Text: { ConnectingLine: { Border: { Color: string; Style: string; Width: string; }; }; LinePosition: "Center" | "Auto"; Offset: number; OverlappingLabels: "Auto" | "Show" | "Hide"; TextPosition: "Center" | "Auto" | "Inside" | "Outside"; Template: string; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; }; Tooltip: { Template: string; }; Rules: { Name: string; Type: "dvchartrule"; Condition: string; RuleProperties: { TargetProperty: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate"; Value: Expr$1; }[]; }[]; UnpivotData: boolean; }, "Action"> & { Action: DomAction; }, "Pointers"> & { Pointers: ({ Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; } & Selectable$1)[]; }, "CustomLabels"> & { CustomLabels: ({ Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; } & Selectable$1)[]; }; }, "Encodings"> & { Encodings: Omit[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Category: { Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }; Details: { Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Color: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Shape: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Size: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Texts: { Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; }, "Color"> & { Color: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Shape"> & { Shape: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Size"> & { Size: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Category"> & { Category: Omit<{ Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; } & Selectable$1; }, "Values"> & { Values: (Omit<{ Type: "dvchartvalueaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: EncodingValuesField; } & Selectable$1)[]; }, "Details"> & { Details: (Omit<{ Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: EncodingDetailsField; } & Selectable$1)[]; }, "Texts"> & { Texts: (Omit<{ Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: TextEncodingField; } & Selectable$1)[]; }; } & Selectable$1)[]; Palette: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen"; CustomPalette: string[]; Legend: { Wrapping: boolean; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartgloballegend"; } & Selectable$1; PlotArea: Omit; Max: Expr$1; Min: Expr$1; MinorGrid: boolean; MinorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorTicks: "None" | "Inside" | "Outside" | "Cross"; MinorTickSize: string; MinorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorUnit: Expr$1; Origin: Expr$1; OverlappingLabels: "Auto" | "Show"; Plots: string[]; Position: "None" | "Near" | "Far"; Reversed: boolean; Scale: "Linear" | "Logarithmic" | "Ordinal" | "Percentage"; Style: { Border: { Color: string; Style: string; Width: string; }; }; TextStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; TitleStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; MaxHeight: number; MaxWidth: number; Width: number | null; Height: number | null; LabelRowCount: number; }[]; Legends: { MaxHeight: number; MaxWidth: number; Title: string; LegendType: "Color" | "Shape" | "Size"; IconColor: string; RangeOptions: { Title: string; To: number; }[]; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartlegend"; }[]; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; } & Selectable$1, "Legends"> & { Legends: ({ MaxHeight: number; MaxWidth: number; Title: string; LegendType: "Color" | "Shape" | "Size"; IconColor: string; RangeOptions: { Title: string; To: number; }[]; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartlegend"; } & Selectable$1)[]; }, "Axes"> & { Axes: ({ Type: "dvchartaxis"; AxisLine: boolean; AxisType: "X" | "Y"; DateMode: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year"; Format: string; LabelAngle: number; LabelField: string; Labels: boolean; LabelStyle: { WritingMode: "lr-tb" | "tb-rl" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; LineStyle: { Border: { Color: string; Style: string; Width: string; }; }; LogBase: number; MajorGrid: boolean; MajorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorTicks: "None" | "Inside" | "Outside" | "Cross"; MajorTickSize: string; MajorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorUnit: Expr$1; Max: Expr$1; Min: Expr$1; MinorGrid: boolean; MinorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorTicks: "None" | "Inside" | "Outside" | "Cross"; MinorTickSize: string; MinorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorUnit: Expr$1; Origin: Expr$1; OverlappingLabels: "Auto" | "Show"; Plots: string[]; Position: "None" | "Near" | "Far"; Reversed: boolean; Scale: "Linear" | "Logarithmic" | "Ordinal" | "Percentage"; Style: { Border: { Color: string; Style: string; Width: string; }; }; TextStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; TitleStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; MaxHeight: number; MaxWidth: number; Width: number | null; Height: number | null; LabelRowCount: number; } & Selectable$1)[]; }; ReportStyle: { StyleId: string; StyleName: string; }; Style: { BackgroundColor: string; BackgroundGradientEndColor: string; BackgroundGradientType: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}`; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; Sizing: "Clip" | "Fit" | "AutoSize" | "FitProportional"; HorizontalAlignment: "Center" | "Left" | "Right" | `=${string}`; VerticalAlignment: "Top" | "Middle" | "Bottom" | `=${string}`; AccessibleDescription: string; Style: WithStatus<{ PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Type: "image"; Name: string; Label: string; ToolTip: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Action"> & { Action: DomAction; }) | ({ LabelFormat: string; LabelFontFamily: string; LabelFontSize: string; LabelFontStyle: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}`; LabelFontColor: string; Orientation: "Horizontal" | "Vertical"; ShowLabels: boolean; TargetShape: "Square" | "Dot" | "Line"; TargetLineColor: string; TargetLineWidth: string; TickMarks: "None" | "Inside" | "Outside"; TicksLineColor: string; TicksLineWidth: string; ValueColor: string; BestValue: Expr$1; Interval: Expr$1; Range1Boundary: Expr$1; Range2Boundary: Expr$1; TargetValue: Expr$1; Value: Expr$1; WorstValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "bullet"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ EncodeMailMergeFields: boolean; Html: string; MailMergeFields: { Name: string; Value: string; }[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "formattedtext"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ((((({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "Text"; Password: boolean; Multiline: boolean; SpellCheck: boolean; MaxLength: number | null; Value: string; Style: { Color: string; BackgroundColor: string; Format: string; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; }) | ({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "CheckBox"; Checked: Expr$1; CheckStyle: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star"; CheckSize: string; Style: { Color: string; BackgroundColor: string; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; })) & { ReportStyle: { StyleId: string; StyleName: string; }; }) & { $hiddenCheckboxProps: { Checked: string; CheckStyle: string; CheckSize: string; }; $hiddenTextProps: { Password: boolean; Multiline: boolean; SpellCheck: boolean; MaxLength: null; Value: string; }; }) & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit; } & { $legacy?: any; })[]; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; FillColor: string; GradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; GradientEndColor: string; LineColor: string; LineWidth: string; MarkerColor: string; MarkerVisibility: boolean; MaximumColumnWidth: string; RangeFillColor: string; RangeGradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; RangeGradientEndColor: string; RangeLowerBound: Expr$1; RangeUpperBound: Expr$1; RangeVisibility: boolean; SparklineType: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar"; SeriesValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "sparkline"; }, "Filters"> & { Filters: Filters; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (((({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "None"; Paragraphs: { TextRuns: ({ Type: "text"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Value: string; StyleName: string; Style: { Subscript: Expr$1 | undefined; Superscript: Expr$1 | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ToolTip: string; } | { Type: "image"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Source: "External" | "Embedded" | "Database"; Value: string; Width: string; Height: string; MIMEType: string; ToolTip: string; })[]; LeftIndent: string | undefined; RightIndent: string | undefined; HangingIndent: string | undefined; StyleName: string; Style: { TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ListStyle: "None" | "Numbered" | "Bullet"; ListLevel: number; ListItemIndex: number; SpaceBefore: string | undefined; SpaceAfter: string | undefined; ListStyleType: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[]; }) | ({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "HTML"; Value: Expr$1; })) & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) & { ReportStyle: { StyleId: string; StyleName: string; }; }) | ({ ReportPart: string; Library: string; Properties: { Name: string; Value: string | number | null; }[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "partitem"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ Text: string; ConsumeWhiteSpace: boolean; ReportItems: ReportItemBase[]; Type: "contentplaceholder"; Name: string; ZIndex: number; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & OptionalTempWidthHeight & { $inChildReport: boolean; }) | ({ Item: any; } & { Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "unknown"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; })) & Selectable$1) & { $templateId?: string | undefined; }>; FplReportItemOrUnknown: Decoder$2<{ Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; /** Transform generic band item to a designer's band: * 1) Extracts Height to a $place, and writes it back * 2) makes it Selectable * 3) adds default LayerName **/ Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: RdlReportItemBase[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ [x: string]: any; Name: string; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: RdlReportItemBase; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; } & { RepeatToFill?: boolean | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: RdlReportItemBase[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { OverflowName?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; }) | { Name: string; Left?: string | undefined; Top?: string | undefined; Type?: "overflowplaceholder" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; Width?: string | undefined; Height?: string | undefined; OverflowName?: string | undefined; } | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }), (((Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanGrow: boolean; CanShrink: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; ToggleImage: { InitialState: Expr$1; }; UserSort: { SortExpression: string; SortExpressionScope: string; SortTarget: string; }; Value: Expr$1; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; LineSpacing: string; CharacterSpacing: string; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; Color: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "textbox"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Action"> & { Action: DomAction; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; LineSpacing: string; CharacterSpacing: string; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; Color: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; }) | (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CheckAlignment: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight"; Text: string; Checked: Expr$1; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; Style: WithStatus<{ Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WrapMode: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "checkbox"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Action"> & { Action: DomAction; }) | { $place: { Left: string; Top: string; Width: string; Height: string; }; StartPoint: { X: string; Y: string; }; EndPoint: { X: string; Y: string; }; LineWidth: string; LineStyle: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; LineColor: string; AccessibleDescription: string; Type: "line"; Name: string; Label: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } | ({ Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; ShapeStyle: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}`; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "shape"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ Value: Expr$1; InvalidBarcodeText: string; Symbology: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1"; CheckSum: boolean; BarHeight: string; CaptionGrouping: boolean; CaptionLocation: "None" | "Above" | "Below"; AztecOptions: { ErrorCorrection: number; Layers: number; Encoding: string; }; Code49Options: { Grouping: boolean; GroupNumber: number; }; DataMatrixOptions: { EccMode: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140"; Ecc200SymbolSize: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48"; Ecc200EncodingMode: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256"; Ecc000_140SymbolSize: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49"; StructuredAppend: boolean; StructureNumber: number; FileIdentifier: number; Encoding: string; }; Ean128Fnc1Options: { Resolution: number; ModuleSize: number; BarAdjust: number; }; Gs1CompositeOptions: { CompositeType: "None" | "CCA"; Value: string; }; MaxiCodeOptions: { Mode: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6"; }; MicroPdf417Options: { CompactionMode: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode"; Version: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44"; SegmentIndex: number; SegmentCount: number; FileID: number; }; MicroQrCodeOptions: { Version: "Auto" | "M1" | "M2" | "M3" | "M4"; ErrorLevel: "Q" | "L" | "M"; Mask: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11"; Encoding: string; }; NarrowBarWidth: string; NWRation: number; Pdf417Options: { Columns: number; Rows: number; ErrorCorrectionLevel: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8"; Pdf417Type: "Normal" | "Simple"; }; QrCodeOptions: { Connection: boolean; ConnectionNumber: number; Version: number; ErrorLevel: "Q" | "L" | "M" | "H"; Mask: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111"; Model: "Model2" | "Model1"; Encoding: string; }; QuietZone: { Left: string; Right: string; Top: string; Bottom: string; }; Rotation: string; RssExpandedStacked: { RowCount: number; }; SupplementOptions: { Value: string; BarHeight: string; CaptionLocation: string; Spacing: string; }; Style: { Color: string; BackgroundColor: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "barcode"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; Sizing: "Clip" | "Fit" | "AutoSize" | "FitProportional"; HorizontalAlignment: "Center" | "Left" | "Right" | `=${string}`; VerticalAlignment: "Top" | "Middle" | "Bottom" | `=${string}`; AccessibleDescription: string; Style: WithStatus<{ PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Type: "image"; Name: string; Label: string; ToolTip: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Action"> & { Action: DomAction; }) | ({ LabelFormat: string; LabelFontFamily: string; LabelFontSize: string; LabelFontStyle: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}`; LabelFontColor: string; Orientation: "Horizontal" | "Vertical"; ShowLabels: boolean; TargetShape: "Square" | "Dot" | "Line"; TargetLineColor: string; TargetLineWidth: string; TickMarks: "None" | "Inside" | "Outside"; TicksLineColor: string; TicksLineWidth: string; ValueColor: string; BestValue: Expr$1; Interval: Expr$1; Range1Boundary: Expr$1; Range2Boundary: Expr$1; TargetValue: Expr$1; Value: Expr$1; WorstValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "bullet"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ({ EncodeMailMergeFields: boolean; Html: string; MailMergeFields: { Name: string; Value: string; }[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "formattedtext"; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | ((((({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "Text"; Password: boolean; Multiline: boolean; SpellCheck: boolean; MaxLength: number | null; Value: string; Style: { Color: string; BackgroundColor: string; Format: string; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; }) | ({ FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "inputfield"; } & { InputType: "CheckBox"; Checked: Expr$1; CheckStyle: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star"; CheckSize: string; Style: { Color: string; BackgroundColor: string; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; })) & { ReportStyle: { StyleId: string; StyleName: string; }; }) & { $hiddenCheckboxProps: { Checked: string; CheckStyle: string; CheckSize: string; }; $hiddenTextProps: { Password: boolean; Multiline: boolean; SpellCheck: boolean; MaxLength: null; Value: string; }; }) & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit; } & { $legacy?: any; })[]; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; FillColor: string; GradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; GradientEndColor: string; LineColor: string; LineWidth: string; MarkerColor: string; MarkerVisibility: boolean; MaximumColumnWidth: string; RangeFillColor: string; RangeGradientStyle: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter"; RangeGradientEndColor: string; RangeLowerBound: Expr$1; RangeUpperBound: Expr$1; RangeVisibility: boolean; SparklineType: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar"; SeriesValue: Expr$1; AccessibleDescription: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "sparkline"; }, "Filters"> & { Filters: Filters; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (((({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "None"; Paragraphs: { TextRuns: ({ Type: "text"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Value: string; StyleName: string; Style: { Subscript: Expr$1 | undefined; Superscript: Expr$1 | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ToolTip: string; } | { Type: "image"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Label: string; Source: "External" | "Embedded" | "Database"; Value: string; Width: string; Height: string; MIMEType: string; ToolTip: string; })[]; LeftIndent: string | undefined; RightIndent: string | undefined; HangingIndent: string | undefined; StyleName: string; Style: { TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontStyle: "Default" | "Normal" | "Italic" | undefined; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color: string | undefined; LineSpacing: string | undefined; BackgroundColor: string | undefined; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; }; ListStyle: "None" | "Numbered" | "Bullet"; ListLevel: number; ListItemIndex: number; SpaceBefore: string | undefined; SpaceAfter: string | undefined; ListStyleType: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[]; }) | ({ CanGrow: boolean; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; KeepTogether: boolean; Style: { Color: string; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; LineHeight: string; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "richtext"; } & { MarkupType: "HTML"; Value: Expr$1; })) & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) & { ReportStyle: { StyleId: string; StyleName: string; }; }) | ({ Item: any; } & { Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "unknown"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }) | (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; ConsumeWhiteSpace: boolean; DataInstanceName: string; DataInstanceElementOutput: "Output" | "NoOutput"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; RowsOrColumnsCount: number; GrowDirection: "Column" | "ColumnReverse" | "Row" | "RowReverse"; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; ReportItems: ReportItemBase[]; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "list"; }, "Filters"> & { Filters: Filters; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; }, "Action"> & { Action: DomAction; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & OptionalTempWidthHeight, "Type"> & { Type: "fixedpagelist"; } & { $fixedPlace: { Width: string; Height: string; OverflowName: string; }; } & OptionalTempWidthHeight) | (Omit; Direction: "Ascending" | "Descending"; }[]; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; TableColumns: { Type: "tablecolumn"; Width: string; FixedHeader: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; AutoWidth: "None" | "Proportional"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; TableGroups: { Type: "tablegroup"; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; }[]; Details: { Type: "tabledetails"; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; MaxDetailsPerPage: Expr$1; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "table"; }, "Header"> & { Header: (Omit<{ Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "Footer"> & { Footer: (Omit<{ Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "TableColumns"> & { TableColumns: ({ Type: "tablecolumn"; Width: string; FixedHeader: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; AutoWidth: "None" | "Proportional"; } & Selectable$1)[]; }, "Filters"> & { Filters: Filters; }, "Details"> & { Details: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Visibility: { Hidden: Expr$1; ToggleItem: string; }; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; }, "TableRows"> & { TableRows: (Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; }, "TableCells"> & { TableCells: (({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } & Selectable$1) | null)[]; })[]; } & Selectable$1) | null; }, "TableGroups"> & { TableGroups: (Omit[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Header: { Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Footer: { Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; } | null; Visibility: { Hidden: Expr$1; ToggleItem: string; }; KeepTogether: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; } & Selectable$1, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; }, "Header"> & { Header: (Omit<{ Type: "tableheader"; FixedHeader: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; })[]; } & Selectable$1) | null; }, "Footer"> & { Footer: (Omit<{ Type: "tablefooter"; PrintAtBottom: boolean; TableRows: { Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; }[]; RepeatOnNewPage: boolean; }, "TableRows"> & { TableRows: (Omit<{ Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Type: "tablerow"; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; TableCells: ({ Item: ReportItemBase & { $width: string; $height: string; }; ColSpan: number; RowSpan: number; AutoMergeMode: "Never" | "Always" | "Restricted"; } | null)[]; } & Selectable$1, "Action"> & { Action: DomAction; })[]; } & Selectable$1) | null; })[]; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { $width: string; $height: string; } & { $fixedPlace: { Width: string; Height: string; OverflowName: string; }; }, "Type"> & { Type: "fixedpagetable"; }) | (Omit; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; FrozenRows: number; FrozenColumns: number; RepeatColumnHeaders: boolean; RepeatRowHeaders: boolean; GroupsBeforeRowHeaders: number; LayoutDirection: "LTR" | "RTL"; RowHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; ColumnHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; Corner: ({ RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[][]; Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[]; }[]; }; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tablix"; }, "Filters"> & { Filters: Filters; }, "RowHierarchy"> & { RowHierarchy: Omit<{ LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }, "Members"> & { Members: ((({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & { Children: (({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & any)[]; }) & Selectable$1)[]; } & Selectable$1; }, "ColumnHierarchy"> & { ColumnHierarchy: Omit<{ LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }, "Members"> & { Members: ((({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & { Children: (({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & any)[]; }) & Selectable$1)[]; } & Selectable$1; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Corner"> & { Corner: (({ RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } & Selectable$1) | null)[][]; }, "Body"> & { Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[]; }[]; } & Selectable$1; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; } & { $width: string; $height: string; $columns: { collection: TablixColumnExtra[]; }; $rows: { collection: TablixRowExtra[]; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { $fixedPlace: { Width: string; Height: string; OverflowName: string; }; } & { RepeatToFill: boolean; }, "Type"> & { Type: "fixedpagetablix"; }) | (Omit<{ Header: (Omit<{ RepeatOnNewPage: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Details: (Omit<{ ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistdetails"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Footer: (Omit<{ RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Groups: { Header: (Omit<{ RepeatOnNewPage: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistheader"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Footer: (Omit<{ RepeatOnNewPage: boolean; PrintAtBottom: boolean; ReportItems: ReportItemBase[]; Name: string | null; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; CanShrink: boolean; CanGrow: boolean; KeepTogether: boolean; Height: string; Visibility: { Hidden: Expr$1; ToggleItem: string; }; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Type: "bandedlistfooter"; } & { $place: { Height: string; Width: string; }; $width: string; LayerName: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }, "Action"> & { Action: DomAction; } & { $width: string; $place: { Height: string; Width: string; }; }) | null; Type: "bandedlistgroup"; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }[]; $width: string; Name: string; Label: string; ToolTip: string; Type: "bandedlist"; KeepTogether: boolean; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; DataSetName: string; Filters: Filters; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; NewSection: boolean; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageName: string; ConsumeWhiteSpace: boolean; PreventOrphanedHeader: boolean; PreventOrphanedFooter: boolean; $place: { Left: string; Top: string; Width: string; Height: string; }; } & { $fixedPlace: { Width: string; Height: string; OverflowName: string; }; }, "Type"> & { Type: "fixedpagebandedlist"; }) | (Omit<{ NewPage: "Next" | "Odd" | "Even"; PageName: string; RoundingRadius: { Default: string; TopLeft: string; TopRight: string; BottomLeft: string; BottomRight: string; }; Overflow: "Auto" | "Scroll" | "Clip" | "Grow"; LinkToChild: string; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ReportItems: ReportItemBase[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "rectangle"; ReportStyle: { StyleId: string; StyleName: string; }; $place: { Left: string; Top: string; Width: string; Height: string; }; $width?: string | undefined; $height?: string | undefined; }, "Type"> & { Type: "fixedpagerectangle"; }) | (Omit; Omit: Expr$1; }[]; Style: { Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PageName: string; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "subreport"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Style"> & { Style: { Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; } & { $fixedPlace: { OverflowName: string; }; }, "Type"> & { Type: "fixedpagesubreport"; }) | (Omit; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; Levels: { Type: "tableofcontentslevel"; LevelName: string; DataElementName: string; DisplayFillCharacters: boolean; DisplayPageNumber: boolean; Style: WithStatus<{ Color: string; BackgroundColor: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; TextIndent: string; LeadingChar: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }>; StyleName: string; }[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tableofcontents"; } & { $style: {}; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Levels"> & { Levels: ({ Type: "tableofcontentslevel"; LevelName: string; DataElementName: string; DisplayFillCharacters: boolean; DisplayPageNumber: boolean; Style: WithStatus<{ Color: string; BackgroundColor: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; TextIndent: string; LeadingChar: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }>; StyleName: string; } & Selectable$1)[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { $fixedPlace: { OverflowName: string; Height: string; }; }, "Type"> & { Type: "fixedpagetableofcontents"; }) | (Omit<{ CustomPaletteInfo: { PaletteId: string | undefined; PaletteName: string | undefined; }; Name: string; Label: string; ToolTip: string; Bar: { BottomWidth: number; NeckHeight: number; Overlap: number; TopWidth: number; Width: number; }; Type: "dvchart"; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; DataSetName: string; Filters: Filters; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; NewSection: boolean; NoRowsMessage: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageName: string; Header: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartheader"; } & Selectable$1; Footer: { Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; Height: number | undefined; HAlign: "Center" | "Left" | "Right"; VAlign: "Top" | "Middle" | "Bottom"; Type: "dvchartfooter"; } & Selectable$1; AccessibleDescription: string; Plots: (Omit[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Category: { Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }; Details: { Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Color: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Shape: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Size: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Texts: { Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; }; Config: { AxisMode: "Cartesian" | "Radial" | "Polygonal"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Bar: { BottomWidth: number | undefined; NeckHeight: number | undefined; Overlap: number | undefined; TopWidth: number | undefined; Width: number | undefined; }; BarLines: boolean; BarLineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; ClippingMode: "None" | "Clip" | "Fit"; CustomLabels: { Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; }[]; InnerRadius: number; LineAspect: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight"; LineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; Offset: number; Opacity: number; Overlays: { Name: string; Type: "dvchartoverlay"; OverlayType: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline"; Display: "Front" | "Back"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Field: string; DetailLevel: "Group" | "Total"; LegendLabel: string; Value: string; Axis: "X" | "Y"; AggregateType: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile"; Start: number; End: number; Order: number; Period: number; ForwardForecastPeriod: number; BackwardForecastPeriod: number; Intercept: number | null; }[]; Pointers: { Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; }[]; Radial: boolean; ShowNulls: "Gaps" | "Connected" | "Zeros"; StartAngle: number; Style: { BackgroundColor: string; }; SwapAxes: boolean; Sweep: number; SymbolOpacity: number; SymbolSize: number; Symbols: boolean; SymbolShape: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus"; SymbolStyle: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Text: { ConnectingLine: { Border: { Color: string; Style: string; Width: string; }; }; LinePosition: "Center" | "Auto"; Offset: number; OverlappingLabels: "Auto" | "Show" | "Hide"; TextPosition: "Center" | "Auto" | "Inside" | "Outside"; Template: string; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; }; Tooltip: { Template: string; }; Rules: { Name: string; Type: "dvchartrule"; Condition: string; RuleProperties: { TargetProperty: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate"; Value: Expr$1; }[]; }[]; UnpivotData: boolean; }; PlotChartType: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge"; PlotChartSubtype: "Plain" | "Clustered" | "Stacked"; }, "Config"> & { Config: Omit; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; Bar: { BottomWidth: number | undefined; NeckHeight: number | undefined; Overlap: number | undefined; TopWidth: number | undefined; Width: number | undefined; }; BarLines: boolean; BarLineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; ClippingMode: "None" | "Clip" | "Fit"; CustomLabels: { Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; }[]; InnerRadius: number; LineAspect: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight"; LineStyle: { Color: string; Style: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}`; Width: string; }; Offset: number; Opacity: number; Overlays: { Name: string; Type: "dvchartoverlay"; OverlayType: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline"; Display: "Front" | "Back"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Field: string; DetailLevel: "Group" | "Total"; LegendLabel: string; Value: string; Axis: "X" | "Y"; AggregateType: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile"; Start: number; End: number; Order: number; Period: number; ForwardForecastPeriod: number; BackwardForecastPeriod: number; Intercept: number | null; }[]; Pointers: { Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; }[]; Radial: boolean; ShowNulls: "Gaps" | "Connected" | "Zeros"; StartAngle: number; Style: { BackgroundColor: string; }; SwapAxes: boolean; Sweep: number; SymbolOpacity: number; SymbolSize: number; Symbols: boolean; SymbolShape: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus"; SymbolStyle: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; }; Text: { ConnectingLine: { Border: { Color: string; Style: string; Width: string; }; }; LinePosition: "Center" | "Auto"; Offset: number; OverlappingLabels: "Auto" | "Show" | "Hide"; TextPosition: "Center" | "Auto" | "Inside" | "Outside"; Template: string; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; }; Tooltip: { Template: string; }; Rules: { Name: string; Type: "dvchartrule"; Condition: string; RuleProperties: { TargetProperty: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate"; Value: Expr$1; }[]; }[]; UnpivotData: boolean; }, "Action"> & { Action: DomAction; }, "Pointers"> & { Pointers: ({ Type: "dvchartplotpointer"; Style: { BackgroundColor: string; }; NeedleWidth: string; NeedlePinWidth: string; End: string; } & Selectable$1)[]; }, "CustomLabels"> & { CustomLabels: ({ Type: "dvchartplotcustomlabel"; Style: { FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; }; Text: string; OffsetX: string; OffsetY: string; } & Selectable$1)[]; }; }, "Encodings"> & { Encodings: Omit[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Category: { Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }; Details: { Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; Color: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Shape: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Size: { Type: "dvchartaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }; Texts: { Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }[]; }, "Color"> & { Color: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Shape"> & { Shape: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Size"> & { Size: Omit[]; Captions: string[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; Action: { Hyperlink: string; Drillthrough: { ReportName: string; Parameters: { Type: "parameter"; ParameterName: string; Value: string | number | null; Omit: Expr$1; }[]; }; BookmarkLink: string; ApplyParameters: { Parameters: { Name: string; Type: "Set" | "Reset" | "Toggle"; Value: string | number | null; }[]; }; }; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; }, "Action"> & { Action: DomAction; } & Selectable$1; }, "Category"> & { Category: Omit<{ Type: "dvchartcategoryencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: Omit & { Value: ({ Type: 'dvchartencodingfieldvalue'; Value: ExprVariant; } & Selectable$1)[]; }; } & Selectable$1; }, "Values"> & { Values: (Omit<{ Type: "dvchartvalueaggregateencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; } | { FieldType: "Complex"; Subfields: { Key: string; Value: Expr$1; Caption: string; }[]; }; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: EncodingValuesField; } & Selectable$1)[]; }, "Details"> & { Details: (Omit<{ Type: "dvchartdetailsencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Group: "None" | "Cluster" | "Stack"; ExcludeNulls: boolean; Sort: "None" | "Ascending" | "Descending"; SortingField: Expr$1; SortingAggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: EncodingDetailsField; } & Selectable$1)[]; }, "Texts"> & { Texts: (Omit<{ Type: "dvcharttextencoding"; Field: { FieldType: "Simple"; Value: Expr$1[]; Captions: string[]; }; Target: "Label" | "ToolTip"; Aggregate: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance"; }, "Field"> & { Field: TextEncodingField; } & Selectable$1)[]; }; } & Selectable$1)[]; Palette: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen"; CustomPalette: string[]; Legend: { Wrapping: boolean; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartgloballegend"; } & Selectable$1; PlotArea: Omit; Max: Expr$1; Min: Expr$1; MinorGrid: boolean; MinorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorTicks: "None" | "Inside" | "Outside" | "Cross"; MinorTickSize: string; MinorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorUnit: Expr$1; Origin: Expr$1; OverlappingLabels: "Auto" | "Show"; Plots: string[]; Position: "None" | "Near" | "Far"; Reversed: boolean; Scale: "Linear" | "Logarithmic" | "Ordinal" | "Percentage"; Style: { Border: { Color: string; Style: string; Width: string; }; }; TextStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; TitleStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; MaxHeight: number; MaxWidth: number; Width: number | null; Height: number | null; LabelRowCount: number; }[]; Legends: { MaxHeight: number; MaxWidth: number; Title: string; LegendType: "Color" | "Shape" | "Size"; IconColor: string; RangeOptions: { Title: string; To: number; }[]; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartlegend"; }[]; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; } & Selectable$1, "Legends"> & { Legends: ({ MaxHeight: number; MaxWidth: number; Title: string; LegendType: "Color" | "Shape" | "Size"; IconColor: string; RangeOptions: { Title: string; To: number; }[]; Hidden: boolean; Orientation: "Horizontal" | "Vertical"; Position: "Left" | "Right" | "Top" | "Bottom"; Style: { Border: { Color: string; Style: string; Width: string; }; BackgroundColor: string; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; }; TextStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; TitleStyle: { Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Type: "dvchartlegend"; } & Selectable$1)[]; }, "Axes"> & { Axes: ({ Type: "dvchartaxis"; AxisLine: boolean; AxisType: "X" | "Y"; DateMode: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year"; Format: string; LabelAngle: number; LabelField: string; Labels: boolean; LabelStyle: { WritingMode: "lr-tb" | "tb-rl" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; LineStyle: { Border: { Color: string; Style: string; Width: string; }; }; LogBase: number; MajorGrid: boolean; MajorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorTicks: "None" | "Inside" | "Outside" | "Cross"; MajorTickSize: string; MajorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MajorUnit: Expr$1; Max: Expr$1; Min: Expr$1; MinorGrid: boolean; MinorGridStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorTicks: "None" | "Inside" | "Outside" | "Cross"; MinorTickSize: string; MinorTickStyle: { Border: { Color: string; Style: string; Width: string; }; }; MinorUnit: Expr$1; Origin: Expr$1; OverlappingLabels: "Auto" | "Show"; Plots: string[]; Position: "None" | "Near" | "Far"; Reversed: boolean; Scale: "Linear" | "Logarithmic" | "Ordinal" | "Percentage"; Style: { Border: { Color: string; Style: string; Width: string; }; }; TextStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; Title: string; TitleStyle: { PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Color: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; }; MaxHeight: number; MaxWidth: number; Width: number | null; Height: number | null; LabelRowCount: number; } & Selectable$1)[]; }; ReportStyle: { StyleId: string; StyleName: string; }; Style: { BackgroundColor: string; BackgroundGradientEndColor: string; BackgroundGradientType: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}`; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }, "Type"> & { Type: "fixedpagedvchart"; }) | ({ Type: "overflowplaceholder"; Name: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { $fixedPlace: { OverflowName: string; }; }) | (Omit<{ ReportPart: string; Library: string; Properties: { Name: string; Value: string | number | null; }[]; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "partitem"; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; } & { $fixedPlace: { Width: string; Height: string; OverflowName: string; }; }, "Type"> & { Type: "fixedpagepartitem"; })) & Selectable$1) & { $templateId?: string | undefined; }>; Tablix: Decoder$2<{ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: RdlReportItemBase | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: RdlReportItemBase | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }, Omit; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; FrozenRows: number; FrozenColumns: number; RepeatColumnHeaders: boolean; RepeatRowHeaders: boolean; GroupsBeforeRowHeaders: number; LayoutDirection: "LTR" | "RTL"; RowHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; ColumnHierarchy: { LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }; Corner: ({ RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[][]; Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[]; }[]; }; Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; StyleName: string; NoRowsMessage: string; DataSetName: string; DataSetParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; PageName: string; NewSection: boolean; Name: string; ZIndex: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; ToolTip: string; Bookmark: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Label: string; LayerName: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Type: "tablix"; }, "Filters"> & { Filters: Filters; }, "RowHierarchy"> & { RowHierarchy: Omit<{ LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }, "Members"> & { Members: ((({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & { Children: (({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & any)[]; }) & Selectable$1)[]; } & Selectable$1; }, "ColumnHierarchy"> & { ColumnHierarchy: Omit<{ LevelSizes: string[]; Members: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & { Children: ({ Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; KeepTogether: boolean; Group: { PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; } | null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; } & any)[]; })[]; })[]; }, "Members"> & { Members: ((({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & { Children: (({ Group: null; KeepWithGroup: "None" | "Before" | "After"; RepeatOnNewPage: boolean; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "statictablixmember"; } | { Group: { Filters: Filters; PrintFooterAtBottom: boolean; Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; KeepTogether: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Header: { Item: ReportItemBase & { $width: string; $height: string; }; LevelCount: number; } | null; BodyIndex: number; BodyCount: number; Type: "dynamictablixmember"; }) & any)[]; }) & Selectable$1)[]; } & Selectable$1; } & { ReportStyle: { StyleId: string; StyleName: string; }; }, "Corner"> & { Corner: (({ RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } & Selectable$1) | null)[][]; }, "Body"> & { Body: { Columns: string[]; Rows: { Height: string; Cells: ({ AutoMergeMode: "Never" | "Always" | "Restricted"; RowSpan: number; ColSpan: number; Item: (ReportItemBase & { $width: string; $height: string; }) | null; } | null)[]; }[]; } & Selectable$1; }, "Style"> & { Style: WithStatus<{ BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Color: string; LineHeight: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; Direction: "Default" | "LTR" | "RTL" | `=${string}`; WritingMode: "lr-tb" | "tb-rl" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }>; } & { $width: string; $height: string; $columns: { collection: TablixColumnExtra[]; }; $rows: { collection: TablixRowExtra[]; }; } & { $place: { Left: string; Top: string; Width: string; Height: string; }; }>; }; type ARIALabels = { /** Sets aria-label attribute */ ariaLabel?: string; /** Sets aria-labelledby attribute */ ariaLabelledBy?: string; }; type PropsWithDefaults = Omit & Required> & { children?: ReactNode; }; type StaticDefaultProps = Required>; declare const DEFAULT_NAMESPACE = "gcui"; /** * HSL color representation */ type HSLColor = { /** * Hue value in the range [0, 360] */ H: number; /** * Saturation value in the range [0, 100] */ S: number; /** * Lightness value in the range [0, 100] */ L: number; }; /** * A utility class for working with colors. */ declare class Color { R: number; G: number; B: number; /** * Alpha value in the range [0, 255] */ A: number; HSL: HSLColor; customValue?: unknown; title?: string; /** * Creates a new color instance from RGB values and optionally alpha and HSL values * @param r A red value in the range [0, 255] * @param g A green value in the range [0, 255] * @param b A blue value in the range [0, 255] * @param a An alpha value in the range [0, 255] * @param hsl An HSL color representation */ constructor(r: number, g: number, b: number, a?: number, hsl?: HSLColor); static readonly webColorsMap: { [key: string]: string; }; private static colorAliases; private static webToHexMap; private static hexToWebMap; private static initMaps; static readonly webColors: (filterAliases?: boolean) => string[]; static readonly webColorsEnum: (filterAliases?: boolean) => { name: string; value: string; }[]; static readonly fromWeb: (webColor: string) => Color; /** * Create a new color instance from RGB values * @param red The red value in the range [0, 255] * @param green The green value in the range [0, 255] * @param blue The blue value in the range [0, 255] * @param alpha The alpha value in the range [0, 255] * @returns A new color instance */ static readonly fromRGB: (red: number, green: number, blue: number, alpha?: number) => Color; /** * Create a new color instance from RGBA values * @param red The red value in the range [0, 255] * @param green The green value in the range [0, 255] * @param blue The blue value in the range [0, 255] * @param alpha The alpha value in the range [0, 1] * @returns A new color instance */ static readonly fromRGBA: (red: number, green: number, blue: number, alpha?: number) => Color; /** * Create a new color instance from HEX value * @param color A string value representing a color in HEX format, for example '#ff0000' * @returns A new color instance */ static readonly fromHEX: (color: string) => Color; /** Parse color from string value. Accept HEX, HEX8, rgb(), rgba() and Web color string */ static readonly fromString: (color: string | undefined) => Color; /** * Parse color from HSL string value * @param color A string value representing a color in HSL format, for example 'hsl(120, 100%, 50%)' * @returns */ static readonly parseHSL: (color: string) => Color; /** * Create a new color instance from HSL values * @param color An HSL color representation * @param alpha An alpha value in the range [0, 1] * @returns A new color instance */ static readonly fromHSL: (color: HSLColor, alpha?: number) => Color; /** * Create a new color instance from HSLA values * @param color An HSL color representation * @param alpha An alpha value in the range [0, 1] * @returns A new color instance */ static readonly fromHSLA: (color: HSLColor, alpha?: number) => Color; static readonly toWeb: (color: Color) => string | undefined; static readonly toHSL: (color: Color) => HSLColor; static readonly shade: (color: Color, percent: number) => Color; static readonly shades: (color: Color) => Color[]; static readonly mix: (color1: Color, color2: Color, percent: number) => Color; static readonly isLight: ({ R, G, B }: Color) => boolean; static readonly isDark: (color: Color) => boolean; lighten(percent: number): Color; darken(percent: number): Color; transparentize(percent: number): Color; get rgb(): string; get rgba(): string; get hex(): string; get hex8(): string; get hslParts(): string; get hsl(): string; get hsla(): string; } type AppRootId = string; declare class PublicAPI { static getDefaultInstance: () => PublicAPI; private static getNamespaceObject; private _namespace; private _stubs; constructor(appRootId?: AppRootId); destroy: () => void; get current(): GCUI; get global(): GCUI; get namespace(): string; get menu(): MenuAPI; get dropdowns(): DropdownAPI; get modals(): ModalAPI; get sidebar(): SidebarAPI; get contextMenu(): ContextMenuAPI; get focusTimer(): FocusTimerAPI; get notifications(): NotificationsAPI; } /** * A set of shades for a theme color. */ type CoreUIShades = { 50: Color; 100: Color; 200: Color; 300: Color; 400: Color; 500: Color; 600: Color; 700: Color; 800: Color; 900: Color; }; type CoreUITheme = Record> = { type: 'core-ui-theme'; name: string; /** * Dark mode flag. If set to `true`, the theme is considered a dark theme. */ dark?: boolean; /** * A main color. Used for backgrounds, borders, and other elements. */ colorNeutral?: CoreUIShades; /** * An accent color. * Used for primary buttons, links, and other interactive elements. */ colorPrimary?: CoreUIShades; /** * A secondary accent color. * Used for icons primarily. */ colorSecondary?: CoreUIShades; /** * A warning color. * Used for warning messages and elements. */ colorWarning?: CoreUIShades; /** * An error color. * Used for error messages and elements. */ colorError?: CoreUIShades; /** * Inverted neutral color. Required **for dark themes only**. */ colorNeutralInverted?: CoreUIShades; /** * Inverted primary color. Required **for dark themes only**. */ colorPrimaryInverted?: CoreUIShades; /** * Inverted secondary color. Required **for dark themes only**. */ colorSecondaryInverted?: CoreUIShades; /** * Inverted warning color. Required **for dark themes only**. */ colorWarningInverted?: CoreUIShades; /** * Inverted error color. Required **for dark themes only**. */ colorErrorInverted?: CoreUIShades; /** * The main background color of the application. */ backgroundBody: Color; /** * The background color of panels and other secondary elements. */ backgroundPanels: Color; /** * Custom text family for the theme. */ textFamily?: string; /** * Custom border radius for the theme. */ borderRadius?: number; /** * A custom binding indicator color for modified properties. */ bindingModified?: Color; /** * A custom binding indicator color for bound properties. */ bindingBound?: Color; /** * A custom binding indicator color for property errors. */ bindingError?: Color; /** * Custom **overrides** for the theme. * **DO NOT** introduce new properties here, only override existing ones. */ custom?: T; /** * @deprecated Use `colorPrimary` instead. */ accent: Color; /** * @deprecated Use `colorPrimary` instead. */ accentText: Color; /** * @deprecated Use `colorSecondary` instead. */ accentSecondary: Color; /** * @deprecated Use `colorWarning` instead. */ accentWarning: Color; /** * @deprecated Use `colorWarning` instead. */ accentWarningText?: Color; /** * @deprecated Use `colorError` instead. */ accentError: Color; /** * @deprecated Use `colorError` instead. */ accentErrorText?: Color; /** * @deprecated Do not use. */ colorContrast: Color; /** * @deprecated Do not use. */ colorContrastText: Color; /** * @deprecated Do not use. */ backgroundBodyOverlay?: Color; /** * @deprecated Do not use. */ backgroundPanelsSection?: Color; /** * @deprecated Do not use. */ backgroundPanelsBorder?: Color; /** * @deprecated Do not use. */ backgroundPanelsOverlay?: Color; /** * @deprecated Do not use. */ shadow: string; /** * @deprecated Do not use. */ shadowBorder: string; /** * @deprecated Do not use. */ overlay: Color; /** * @deprecated use `colorNeutral` instead. */ textColor: Color; /** * @deprecated Do not use. */ elemBackground: Color; /** * @deprecated Do not use. */ elemBackgroundHover: Color; /** * @deprecated Do not use. */ btnGroupHeader: Color; /** * @deprecated Do not use. */ btnGroupHeaderHover: Color; /** * @deprecated Do not use. */ dropdownBackground: Color; /** * @deprecated Do not use. */ dropdownBackgroundHover?: Color; /** * @deprecated Do not use. */ dropdownBorder?: Color; }; declare const coreUIThemes: { default: CoreUITheme>; defaultDark: CoreUITheme; darkOled: CoreUITheme; highContrast: CoreUITheme; highContrastDark: CoreUITheme; }; type CoreUIRoot = { addEventListener: (event: keyof WindowEventMap, listener: EventListener) => void; removeEventListener: (event: keyof WindowEventMap, listener: EventListener) => void; getElement: () => HTMLElement; }; type CoreUIContextValue = { root: CoreUIRoot; theme: { current: CoreUITheme; update: (theme: CoreUITheme) => void; reset: () => void; }; API: PublicAPI; }; declare const CoreUIContext: React.Context; type CoreUIContextType = React.ContextType; type SVGIcon = { /** Icon type */ type: 'svg'; /** SVG element to render */ content: JSXR.Element; /** * Size of the icon * @deprecated Use new icon guidelines */ size?: 'small' | 'default' | 'large' | 'custom'; /** Rotation of the icon */ rotate?: '90' | '180' | '270'; /** Custom CSS class name */ cssClass?: string; }; type FontIcon = { /** Icon type */ type: 'font'; /** CSS class name */ iconCssClass: string; /** Icon font size */ fontSize?: string; }; type CssIcon = { /** Icon type */ type: 'css'; /** CSS class name */ cssClass: string; }; type Icon = FontIcon | CssIcon | SVGIcon; type Size = 'small' | 'default' | 'large'; type BasicAlignment = 'left' | 'center' | 'right'; type Accent = 'none' | 'text' | 'icon' | 'text+icon' | 'full'; type Background = 'default' | 'transparent'; type Level = 'info' | 'warning' | 'error'; type Coordinates = { x: number; y: number; }; type FalsyJSX = false | null | undefined | '' | 0; type DropdownButton = { type: 'button'; key?: React.Key; icon?: Icon; text?: string; title?: string; value?: any; selected?: boolean; disabled?: boolean; onClick?: (value?: any, XYCoord?: Coordinates) => void; }; type DropdownGroup = { type: 'group'; key?: React.Key; icon?: Icon; text?: string; title?: string; value?: any; selected?: boolean; disabled?: boolean; items?: DropdownItem[]; menuCustomCSS?: string; onClick?: (value?: any) => void; }; type DropdownSplitter = { type: 'splitter'; }; type DropdownHeader = { type: 'header'; header: string; }; type DropdownCustomItem = { type: 'custom'; customContent: React.ReactChild; }; type DropdownItem = DropdownButton | DropdownSplitter | DropdownHeader | DropdownGroup | DropdownCustomItem | FalsyJSX; type DropdownMenuWidth = 'default' | '100%' | 'auto' | number; type DropdownMenuMaxHeight = 'none' | 'default' | number; type ParentElement = { type: 'element'; element: HTMLDivElement; }; type ParentMouse = { type: 'mouse'; position: Coordinates; }; type CallBackFunction = () => void; type DropdownMenuProps = { dataAid?: string; parent: ParentElement | ParentMouse; items?: DropdownItem[]; content?: any; multiselect?: boolean; width?: DropdownMenuWidth; align?: BasicAlignment; dropup?: boolean; dropOnSide?: boolean; offset?: boolean | number; size?: Size; maxHeight?: DropdownMenuMaxHeight; edgeSnapOffset?: number; scrollToSelection?: boolean; customCSS?: string; onItemClick?: (item: DropdownItem) => void; generateItemPreview?: (value: any, selected?: boolean) => JSXR.Element | null; customButtonRenderer?: (item: DropdownButton) => JSXR.Element | null; onTransitionEnd?: () => void; customScroll?: boolean; ariaRole?: string; id?: string; backButtonCallbacks?: CallBackFunction; leaveGroup?: CallBackFunction; } & ARIALabels; type ContextMenuAPI = { open: ContextMenuProvider['open']; close: ContextMenuProvider['close']; /** Indicates that stub is used instead of actual context menu instance */ isStub?: true; }; type ContextMenuOptions = Omit; type ContextMenuProps = { /** HTML data-aid attribute for the dropdown menu */ dataAid?: string; /** Size of dropdown items */ size?: Size; }; type ContextMenuState = { showMenu: boolean; mousePosition: Coordinates; }; declare class ContextMenuProvider extends React.Component { static contextType: React.Context; context: CoreUIContextType; private _menu; private _menuProps; private _onItemClick; private _lastFocusedElement; state: { showMenu: boolean; mousePosition: { x: number; y: number; }; }; componentDidMount(): void; open: (mousePosition: Coordinates, items?: DropdownItem[], onItemClick?: ((item: DropdownItem) => void) | undefined, options?: ContextMenuOptions) => void; close: () => void; onItemClick: (item: DropdownItem) => void; getNode: () => HTMLDivElement | null; getSafeZone: () => void; getMenuNode: () => void; onNavigation: () => void; getPositionerNode: () => void; updateMenuPosition: () => void; render(): false | JSXR.Element; } /** * TODO!: This component MUST be reworked in v10 according to spec: https://www.w3.org/WAI/ARIA/apg/example-index/combobox/combobox-select-only.html * The value is set when users press Space, Enter, or Tab, or when focus moves out of the combobox. * The current value is retained if the listbox is closed with Escape or if the user collapses the list by clicking the input. * */ type DropdownAPI = { open: DropdownManager['open']; cleanup: DropdownManager['cleanup']; menuRootSelector: DropdownManager['menuRootSelector']; current: DropdownManager['current']; /** Indicates that stub is used instead of actual dropdown instance */ isStub?: true; }; declare class DropdownManager { private _activeDropdown; private _menuRootSelector; constructor(root: CoreUIRoot); private onPointerEvent; open: (dropdown: Dropdown | null) => void; cleanup: () => void; set menuRootSelector(callback: () => HTMLElement | null); get menuRootSelector(): () => HTMLElement | null; get current(): Dropdown | null; } type DropdownProps = { /** Set of elements to render in dropdown menu (replaces `content` property) */ items?: DropdownItem[]; /** Custom content to render in dropdown menu (doesn't render if `items` property is defined) */ content?: any; /** * HTML id attribute. * * It's set on the dropdown container and passed down to toggle as `${id}_toggle` */ id?: string; /** * HTML data-aid attribute. * * It's set on the dropdown container and passed down to toggle and menu as `${dataAid}_toggle` and `${dataAid}_menu` respectively */ dataAid?: string; /** Whether the dropdown should expand to fill container */ block?: boolean; /** Apply accent color to toggle */ accent?: Accent; /** Background color mode */ background?: Background; /** Whether the toggle should have rounded ends */ rounded?: boolean; /** Size of the toggle and dropdown items */ size?: Size; /** * Size of menu items * * @default matches `size` property */ itemSize?: Size; /** Width of dropdown container. Should be valid CSS value (e.g. '50px') */ width?: string; /** Changes accent color */ level?: Level; /** Icon to render on the toggle. Placed before the text */ icon?: Icon; /** Icon to render instead of default chevron */ chevronIcon?: Icon; /** Toggle's title. Placed after the icon */ text?: string; /** Toggle's text alignment */ textAlign?: BasicAlignment; /** * Content of toggle's tooltip */ title?: string; /** Custom content for toggle. Replaces icon and text properties */ toggleContent?: any; /** Toggle's loading status */ loading?: boolean; /** Indicates that text should be displayed as a placeholder (slightly dimmed in comparison to the default style) */ placeholderText?: boolean; /** Space-delimited list of class names for dropdown container */ customCSS?: string; /** Function called to render value preview */ generatePreview?: (value?: any) => JSXR.Element | null; /** Whether to allow selection of multiple values. If set to true the checkbox will be rendered next to each item in dropdown menu */ multiselect?: boolean; /** Disables closing of menu on item click */ noCloseOnSelect?: boolean; /** If set to true the menu will be scrolled down to selected item when it opens */ scrollToSelection?: boolean; /** Disables default scroll bar in dropdown menu */ customScroll?: boolean; /** Hides chevron */ hiddenChevron?: boolean; /** Width of dropdown menu */ menuWidth?: DropdownMenuWidth; /** Max height of dropdown menu */ menuMaxHeight?: DropdownMenuMaxHeight; /** Menu alignment relative to toggle */ menuAlign?: BasicAlignment; /** Whether the menu should open up */ dropup?: boolean; /** Whether the menu should open on the side */ dropOnSide?: boolean; /** Whether the menu should appear next to toggle or on top of it. It's possible to specify a number of pixels for offset */ offset?: boolean | number; /** Defines minimum distance in pixels between the menu and an edge of app/viewport */ edgeSnapOffset?: number; /** HTML ARIA role attribute for the menu */ menuAriaRole?: string; /** HTML ARIA aria-label attribute for the menu */ menuAriaLabel?: string; /** HTML ARIA aria-labelledby attribute for the menu */ menuAriaLabelledBy?: string; /** Space-delimited list of class names for dropdown men */ menuCustomCSS?: string; /** Used to prevent closing of dropdown menu when user clicks on HTMLElement returned by this function */ safeZone?: () => HTMLElement | null; /** Function called to render item preview in dropdown menu */ generateItemPreview?: (value: any, selected?: boolean) => JSXR.Element | null; /** Function called to render custom DropdownButton content in dropdown menu */ customButtonRenderer?: DropdownMenuProps['customButtonRenderer']; /** Whether the dropdown is non-interactive */ disabled?: boolean; /** Whether the dropdown is invalid */ invalid?: boolean; /** Invoked when user clicks on dropdown item (invoked only if item doesn't have its own onClick callback added through `items` property) */ onSelect?: (value: any) => void; /** Invoked when dropdown menu opens or closes by user or API */ onToggle?: (open: boolean) => void; /** HTML ARIA role attribute */ ariaRole?: string; } & ARIALabels; type DropdownDefaultProps = keyof Pick; type DropdownState = { open: boolean; }; declare class Dropdown extends React.Component { static contextType: React.Context; context: CoreUIContextType; static defaultProps: StaticDefaultProps; props: PropsWithDefaults; private _dropdown; private _menu; state: { open: boolean; }; componentDidMount(): void; componentDidUpdate(): void; componentWillUnmount(): void; getNode: () => HTMLDivElement | null; getSafeZone: () => HTMLElement | null; getMenuNode: () => HTMLDivElement | null | undefined; getPositionerNode: () => HTMLDivElement | null | undefined; updateMenuPosition: () => void | undefined; open: () => void; close: () => void; onToggleClick: (e: React.MouseEvent) => void; onItemClick: (item: DropdownItem) => void; onNavSelect: () => void | undefined; getFocusedItemId: () => string | null; render(): JSXR.Element; } type FocusTimerAPI = { advance: FocusTimer['advance']; reset: FocusTimer['reset']; /** Indicates that stub is used instead of actual focus timer instance */ isStub?: true; }; type FocusTimerProps = { /** Number of milliseconds to wait before disabling focus indication after the TAB key was pressed */ waitingTime?: number; /** Class name used to disable focus indication through CSS styles */ className?: string; /** Function that returns DOM element inside of which focus styles will be disabled */ getContainer?: () => HTMLElement; }; type FocusTimerDefaultProps = keyof Pick; declare class FocusTimer extends React.Component { static contextType: React.Context; context: CoreUIContextType; static defaultProps: StaticDefaultProps; props: PropsWithDefaults; private _timerId; private _container; componentDidMount(): void; componentWillUnmount(): void; private onKeyUp; advance: () => void; reset: () => void; render(): null; } type BadgePosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'inline'; type BadgeProps = { /** HTML id attribute */ id?: string; /** HTML data-aid attribute */ dataAid?: string; /** * Text to render on the Badge. * * Badge is rendered as a dot if neither `content` nor `component` prop were provided. */ content?: string | number; /** * Custom component to render in place of the Badge. * * Badge is rendered as a dot if neither `content` nor `component` prop were provided. */ component?: React.ReactElement; /** Position of the Badge */ position?: BadgePosition; /** Whether the Badge should stay inside host container's bounds */ inset?: boolean; /** Level of the Badge */ level?: Level; /** Inverted color for the Badge */ inverted?: boolean; /** Content of Badge's tooltip */ title?: string; /** Whether the Badge should have rounded ends */ rounded?: boolean; /** Size of the Badge */ size?: Size; /** Space-delimited list of class names for the Badge */ customCSS?: string; }; type ButtonProps = { /** HTML id attribute */ id?: string; /** HTML name attribute */ name?: string; /** HTML data-aid attribute */ dataAid?: string; /** HTML type attribute */ type?: 'button' | 'reset' | 'submit'; /** Whether the button should take up the full width of its container */ block?: boolean; /** Apply accent color to button */ accent?: Accent; /** Background color mode */ background?: Background; /** Whether the button should have rounded ends */ rounded?: boolean; /** Size of the button */ size?: Size; /** Width of the button. Should be valid CSS value (e.g. '50px') */ width?: string; /** Icon to render on the button. Placed before the text (not renders if button has child nodes) */ icon?: Icon; /** Button's title. Placed after the icon (not renders if button has child nodes) */ text?: string; /** Button's text alignment */ textAlign?: BasicAlignment; /** Content of button's tooltip (by default matches `text` property) */ title?: string; /** Space-delimited list of class names for the button */ customCSS?: string; /** Changes accent color */ level?: Level; /** HTML tab-index attribute */ tabIndex?: number; /** Badge to render on the button */ badge?: BadgeProps & { /** Whether to render a badge near button's icon */ nearIcon?: boolean; }; /** Shows an animated icon to indicate any background processing */ loading?: boolean; /** Layout of the button */ layout?: 'horizontal' | 'vertical'; /** Whether the button is non-interactive */ disabled?: boolean; /** Invoked on `click` event */ onClick?: (e: React.MouseEvent) => void; /** Invoked on `doubleClick` event */ onDoubleClick?: (e: React.MouseEvent) => void; /** Invoked on `mouseDown` event */ onMouseDown?: (e: React.MouseEvent) => void; /** HTML ARIA role attribute */ ariaRole?: string; /** HTML ARIA aria-haspopup attribute */ ariaHasPopup?: string; /** HTML ARIA aria-expanded attribute */ ariaExpanded?: boolean; /** HTML ARIA aria-selected attribute */ ariaSelected?: boolean; /** HTML ARIA aria-controls attribute */ ariaControls?: string; /** HTML ARIA aria-activedescendant attribute */ ariaActivedescendant?: string; } & ARIALabels; type MenuStatus = 'collapsed' | 'expanded' | 'panel'; type MenuStatusCallback = (status: MenuStatus) => void; type MenuTransitionSubscription = { start?: MenuStatusCallback; end?: MenuStatusCallback; }; type MenuAPI = { expand: () => void; collapse: () => void; toggle: () => void; panels: { open: (panelId: string) => void; close: (panelId?: string) => void; pin: (panelId?: string) => void; unpin: () => void; }; onTransition: (subscriptionObject: MenuTransitionSubscription) => () => void; /** Indicates that stub is used instead of actual menu instance */ isStub?: true; }; type NotificationsPosition = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'; type NotificationSize = 'default' | 'small'; type Notification = { /** Unique identifier for the notification */ id: string | number; /** Level of the notification */ level: Level; /** Icon of the notification */ icon?: Icon; /** Title of the notification */ caption: string; /** Detailed description for the notification */ content?: string; /** Number of milliseconds to wait before auto-dismissing the notification */ autoDismissTimeout?: number; /** Specifies that notification pop-up should not appear */ hidden?: boolean; }; type Task = { /** Unique identifier for the task */ id: string | number; /** Title of the task */ caption: string; /** Text indicating status of the task */ statusText?: string; /** * Number indicating a progress of the task. * * Progress can be set in range from `0` to `1` and from `0` to `100` (avoid using `1` in the latter case). * Leave this property undefined to indicate indeterminate progress with ongoing animation */ progress?: number; /** Invoked when user clicks cancel button on the task. Return `false` if you want to prevent cancellation */ cancel?: () => void | boolean; }; type TaskUpdateData = Pick; type NotificationPayload = Omit & { id?: Notification['id']; }; type TaskPayload = Omit & { id?: Task['id']; }; type SendNotification = { type: 'notification'; payload: NotificationPayload; }; type SendTask = { type: 'task'; payload: TaskPayload; }; type CountFn = (count: number) => string; type NotificationDetailsLocalization = { /** Localization for `Dismiss All` button's label */ dismissAllLabel?: string; /** Localization for `Dismiss` button's tooltip */ dismissLabel?: string; /** Localization for `Expand` button's tooltip */ expandTitle?: string; /** Localization for `Collapse` button's tooltip */ collapseTitle?: string; /** Localization for `Error` category label */ errorCategoryLabel?: CountFn | string; /** Localization for `Warning` category label */ warningCategoryLabel?: CountFn | string; /** Localization for `Info` category label */ infoCategoryLabel?: CountFn | string; /** An attribute to provide an accessible name `aria-label` */ ariaLabel?: string; }; type Localization = { /** Localization for `Dismiss All` button's label */ dismissAllLabel?: string; /** Localization for `Dismiss` button's label */ dismissLabel?: string; /** Localization for `Show All` button's label */ showAllLabel?: string; /** Localization for `Details` button's label */ showDetailsLabel?: string; /** Localization for `Task Cancel` button's tooltip */ cancelTaskTitle?: string; }; type NotificationsLocalization = Localization & NotificationDetailsLocalization; type NotificationsAPI = { send: NotificationManager['onSend']; dismiss: NotificationManager['onDismiss']; dismissAll: NotificationManager['onDismissAll']; updateTask: NotificationManager['onTaskUpdate']; subscribe: NotificationManager['subscribe']; unsubscribe: NotificationManager['unsubscribe']; getState: NotificationManager['getState']; /** Indicates that stub is used instead of actual notifications instance */ isStub?: true; }; type NotificationsUpdateCallback = (state: NotificationManagerState) => void; type NotificationManagerProps = NotificationsLocalization & { /** * HTML "data-aid" attribute. * * Set on: * + *notifications* as `${dataAid}_notification` * + *tasks* as `${dataAid}_task` * + *NotificationsBatch* as `${dataAid}_batch` * + *NotificationDetails* as `${dataAid}_notification-details` */ dataAid?: string; /** Size of notifications */ size?: NotificationSize; /** Whether notifications should have rounded ends */ rounded?: boolean; /** Notifications position on the screen */ position?: NotificationsPosition; /** Number of milliseconds to wait before auto-dismissing the notification */ autoDismissTimeout?: number; /** * Number of milliseconds to wait before hiding the notification. Hiding keeps notification in state and stops it's rendering * * @default set to 2000 if there are any components subscribed via API `subscribe` function */ autoHideTimeout?: number; /** Space-delimited list of class names for notifications container */ customCSS?: string; /** Space-delimited list of class names for `NotificationDetails` */ detailsCustomCSS?: string; /** Invoked when notification is dismissed */ onDismiss?: (id: Notification['id']) => void; }; type NotificationManagerDefaultProps = keyof Pick; type NotificationManagerState = { notifications: Notification[]; tasks: Task[]; }; declare class NotificationManager extends React.Component { static contextType: React.Context; context: CoreUIContextType; static defaultProps: StaticDefaultProps; props: PropsWithDefaults; private _store; private _subscribedCallbacks; private _notificationIdBase; private _notificationCounter; state: NotificationManagerState; constructor(props: NotificationManagerProps); componentDidMount(): void; componentWillUnmount(): void; onSend: ({ type, payload }: SendNotification | SendTask) => void; onDismiss: (id: Notification['id']) => void; onDismissAll: () => void; onTaskUpdate: (updateData: TaskUpdateData) => void; subscribe: (callback: NotificationsUpdateCallback) => void; unsubscribe: (callback: NotificationsUpdateCallback) => void; getState: () => NotificationManagerState; private generateNotificationId; private onUpdate; private onTaskCancel; private onNotificationHide; render(): JSXR.Element; } type NotificationsData = { notifications: Notification[]; tasks: Task[]; amount: { info: number; warning: number; error: number; notifications: number; tasks: number; total: number; }; level: Level; }; type ModalPosition = { top: number; left: number; }; type ModalSize = { width: number; height: number; }; type ModalStyle = { content?: React.CSSProperties; }; type StackedControls = { align?: 'left' | 'right' | 'center'; buttons: ButtonProps[]; }; type SpreadControls = { align: 'spread'; left: ButtonProps[]; right: ButtonProps[]; }; type Controls = StackedControls | SpreadControls; type DialogProps = { /** Whether the dialog should be shown or not */ open: boolean; /** Title to render in the header of the dialog */ title: string; /** Set of buttons to render in the footer of the dialog */ controls: Controls; /** Invoked when user attempts to close the dialog by clicking close button, by clicking overlay or hitting escape key */ onClose: () => void; /** * HTML "data-aid" attribute for the dialog container. * * Also set on: * + *close button* as `${dataAid}_close-button` * + *controls* as `${dataAid}_control_${index_of_control}` */ dataAid?: string; /** Subtitle to render in the header of the dialog */ subtitle?: string; /** Icon to render in the header of the dialog */ icon?: Icon; /** Space-delimited list of class names for the dialog container */ customCSS?: string; /** * Maximum height of dialog `content`. Should be valid CSS value * * @default '62vh' */ contentMaxHeight?: string; /** Changes color of the header and controls */ level?: Level; /** Object with styles for the dialog container (`content` key) */ style?: ModalStyle; /** Whether the dialog should have rounded corners and rounded controls */ rounded?: boolean; /** Disables rendering of the close button */ hideCloseButton?: boolean; /** Title to render in the header of the dialog for the Close button */ titleBtnClose?: string; /** Alignment of the title */ titleAlign?: 'left' | 'center'; /** Number of milliseconds to wait before closing the modal. Useful for unmount animation */ closeTimeoutMS?: number; /** Whether the dialog should close when user clicks on the overlay */ shouldCloseOnOverlayClick?: boolean; /** Whether the dialog should close when user hits escape key */ shouldCloseOnEsc?: boolean; /** Invoked when the dialog opens */ onOpen?: () => void; /** Enables dialog resize */ canResize?: boolean; /** Minimum dialog width in pixels. If not set, initial dialog width treated as min width (means user can only increase it) */ minWidth?: number; /** Minimum dialog height in pixels. If not set, initial dialog height treated as min height (means user can only increase it) */ minHeight?: number; /** Disables default scroll bar in modal content */ customScroll?: boolean; /** Explicit Dialog position */ position?: ModalPosition; /** Explicit Dialog size */ size?: ModalSize; /** invoked when Dialog position has changed */ onUpdatePosition?: (position: ModalPosition) => void; /** invoked when Dialog size has changed */ onUpdateSize?: (size: ModalSize) => void; }; type OK = ['ok']; type OKCancel = ['ok', 'cancel']; type YesNo = ['yes', 'no']; type YesNoCancel = ['yes', 'no', 'cancel']; type MsgBoxControlType = OK | OKCancel | YesNo | YesNoCancel; type MsgBoxControl = 'ok' | 'cancel' | 'yes' | 'no'; type MsgOnClose = (button?: MsgBoxControl) => void; type MsgCustomLabels = { ok?: string; cancel?: string; yes?: string; no?: string; }; type MessageBoxProps = { /** Whether the message box should be shown or not */ open: boolean; /** Title to render in the header of the message box */ title: string; /** Text content of the message box */ message: string; /** Set of buttons to render in the footer of the message box */ controls: MsgBoxControlType; /** * Invoked when user clicks control buttons or attempts to close the message box by clicking close button, * by clicking overlay or hitting escape key. * When user clicks control this callback is invoked with the type of clicked button */ onClose: MsgOnClose; /** * HTML "data-aid" attribute for the message box container. * * Also set on: * + *close button* as `${dataAid}_close-button` * + *controls* as `${dataAid}_control_${index_of_control}` */ dataAid?: string; /** Message box buttons alignment */ buttonsAlign?: StackedControls['align']; /** Changes color of the header and controls */ level?: Level; /** Whether the message box should have rounded corners and rounded controls */ rounded?: boolean; /** Icon to render in the header of the message box */ icon?: Icon; /** Object with styles for the message box container (`content` key) */ style?: ModalStyle; /** Custom labels for the control buttons */ customControlLabels?: MsgCustomLabels; /** Space-delimited list of class names for the message box container */ customCSS?: string; /** Disables rendering of the close button */ hideCloseButton?: boolean; /** Alignment of the title */ titleAlign?: 'left' | 'center'; /** Number of milliseconds to wait before closing the modal. Useful for unmount animation */ closeTimeoutMS?: number; /** Whether the message box should close when user clicks on the overlay */ shouldCloseOnOverlayClick?: boolean; /** Whether the message box should close when user hits escape key */ shouldCloseOnEsc?: boolean; /** Invoked when the message box opens */ onOpen?: () => void; /** Enables dialog resize */ canResize?: boolean; /** Minimum dialog width in pixels. If not set, initial dialog width treated as min width (means user can only increase it) */ minWidth?: number; /** Minimum dialog height in pixels. If not set, initial dialog height treated as min height (means user can only increase it) */ minHeight?: number; }; type ModalAPI = { dialog: (content: React.ReactElement, props: Omit & { onClose?: () => void; }) => void; message: (props: Omit) => void; close: () => void; /** Indicates that stub is used instead of actual modal instance */ isStub?: true; }; type SidebarPanelToggle = { icon: Icon; text?: string; title?: string; badge?: BadgeProps; }; type SidebarPanelProps = { /** Unique identifier for the panel */ id: string; /** Icon, title and tooltip for panel's toggle */ toggle: SidebarPanelToggle; /** HTML data-aid attribute for the panel */ dataAid?: string; /** * Disables default panel scroll bar * * @default false */ customScroll?: boolean; /** Space-delimited list of class names for the panel */ customCSS?: string; }; type _SidebarNotificationPanelProps = Partial> & NotificationDetailsLocalization & { notifications: NotificationsData['notifications']; toggle?: Omit; /** Specifies the text to be displayed when there're no active notifications to show */ placeholder?: string; /** Specifies that a panel should always be visible */ alwaysVisible?: boolean; }; type SidebarNotificationPanelProps = Omit<_SidebarNotificationPanelProps, 'notifications' | 'id' | 'customScroll'>; type SidebarStatus = 'collapsed' | 'expanded'; type SidebarStatusCallback = (status: SidebarStatus) => void; type SidebarAPI = { open: SidebarBase['open']; close: SidebarBase['close']; onTransition: SidebarBase['subscribeToTransition']; /** Indicates that stub is used instead of actual sidebar instance */ isStub?: true; }; type SidebarProps = { /** * HTML data-aid attribute. * * It's set on the sidebar container and passed to `panel toggles`, `expand toggle` and `side toggle` * as `${dataAid}_panel-toggles`, `${dataAid}_toggle` and `${dataAid}_side-toggle` respectively */ dataAid?: string; /** Identifier of the sidebar panel that should be open on initial render */ defaultPanelId?: string; /** Space-delimited list of class names for sidebar container */ customCSS?: string; /** Size of the controls container */ toggleSize?: Size; /** Whether to render a `side toggle` */ withSideToggle?: boolean; /** Specifies that sidebar can be resized by the user */ resizable?: boolean; /** Specifies the width of the sidebar (or initial width in case if the sidebar is resizable). Number in pixels or valid CSS string. */ defaultWidth?: number | string; /** Specifies that panel toggles should be hidden when the sidebar is in "collapsed" state */ hidePanelToggles?: boolean; /** * Specifies minimum width of the resizable sidebar * * If value between `0` and `1` the width will be derived from application width (0 = 0%, 1 = 100%); * value bigger than `1` is width in pixels * */ minResizeWidth?: number; /** * Specifies maximum width of the resizable sidebar * * If value between `0` and `1` the width will be derived from application width (0 = 0%, 1 = 100%); * value bigger than `1` is width in pixels * */ maxResizeWidth?: number; /** Tooltip for `expand toggle` to show when sidebar is expanded */ collapseTitle?: string; /** Tooltip for `expand toggle` to show when sidebar is collapsed */ expandTitle?: string; /** Define this property to add a sidebar panel containing `NotificationDetails` component with active app-wide notifications */ notificationPanel?: SidebarNotificationPanelProps; /** Invoked when the active panel is changed */ onPanelChange?: (panelId: string | null) => void; /** Invoked when sidebar expands or collapses by user or API */ onToggle?: SidebarStatusCallback; /** Invoked when the sidebar was resized */ onResizeEnd?: (width: number) => void; /** Identifier of the SidebarControlsRoot component to render controls to */ controlsContainerId?: string; }; type _SidebarProps = SidebarProps & { notificationsData?: NotificationsData; }; type SidebarDefaultProps = keyof Pick<_SidebarProps, 'collapseTitle' | 'expandTitle' | 'toggleSize' | 'withSideToggle' | 'resizable' | 'minResizeWidth' | 'maxResizeWidth' | 'defaultWidth' | 'hidePanelToggles'>; type SidebarPropsWithDefaults = PropsWithDefaults<_SidebarProps, SidebarDefaultProps>; type SidebarState = { activePanelId: string | null; status: SidebarStatus; controlsRoot: HTMLElement | null; inTransition: boolean; }; declare class SidebarBase extends React.Component<_SidebarProps, SidebarState> { static contextType: React.Context; context: CoreUIContextType; static defaultProps: StaticDefaultProps; props: SidebarPropsWithDefaults; private _panelIds; private _container; private _menu; private _panelContainer; private _collapsedMenuWidth; private _transitionSubscribers; private _resizedWidth; private _prevPanelsAmount; private _panelsAmount; private getPanels; state: SidebarState; static getDerivedStateFromProps(props: SidebarPropsWithDefaults, state: SidebarState): null; componentDidMount(): void; componentDidUpdate(prevProps: SidebarPropsWithDefaults, prevState: SidebarState): void; private onToggle; private onTransitionEnd; open: (panelId?: string) => void; close: () => void; private subscribeToTransition; private onTabSelect; private toggleSidebar; private setControlsRoot; private setMenuMinWidth; onResizeStart: () => void; onResize: (width: number) => void; onResizeEnd: () => void; render(): JSXR.Element | null; } type LabelTooltip = { text: string; icon?: Icon; onClick?: (e: React.MouseEvent) => void; }; /** * NOTE: Due to the 'no-explicit-any' rule, it's preferable to use 'PlainObject'. * However, if we're accepting 'any', we can replace 'unknown' with 'any' in the 'PlainObject' type and entirely remove 'AnyObject' * * @deprecated try to use PlainObject instead */ type AnyObject = Record; type PropertyCategory = string; type PropertyLabel = string; type PropertyType = string; type PropertyValuePath = string; type PropertyDisplayMode = 'simple' | 'advanced' | 'both'; type TooltipMeta = { tooltip?: LabelTooltip; }; type PropertyDescriptor = { /** Specifies grouping for the property */ category: PropertyCategory; /** Specifies label for the property */ label: PropertyLabel; /** Specifies type of the editor that will be rendered */ type: PropertyType; /** Path inside objectValue to the value of the property */ valuePath: PropertyValuePath; /** Specifies in which view mode the editor should be visible */ mode: PropertyDisplayMode; /** Object with arbitrary data for the editor */ meta?: Meta; }; declare global { type GCUI = { menu: MenuAPI; dropdowns: DropdownAPI; modals: ModalAPI; sidebar: SidebarAPI; contextMenu: ContextMenuAPI; focusTimer: FocusTimerAPI; notifications: NotificationsAPI; }; interface Window { [DEFAULT_NAMESPACE]: GCUI; } } type ViewControlDisplay = 'none' | 'top' | 'right' | 'bottom' | 'left'; type ViewControlColor = 'default' | 'accent' | 'warning' | 'error'; type ViewControlAlignment = 'left' | 'center' | 'right'; type ViewControlTextAlignment = ViewControlAlignment | 'justify'; type ViewControlLayout = 'horizontal' | 'vertical'; type ViewControlFont = { bold?: boolean; italic?: boolean; underline?: boolean; transform?: 'none' | 'lowercase' | 'uppercase'; }; type ParametersViewControlBase = { label: { text?: string; color?: ViewControlColor; font?: ViewControlFont; display: ViewControlDisplay; }; binding: string | string[]; }; type DateTimeUnit = 'Day' | 'Week' | 'Month' | 'Quarter' | 'Year' | 'Hour' | 'Minute' | 'Second'; type DynamicRangeType = 'Current' | 'Last' | 'Next' | 'ToDate' | 'LastToDate'; /** A DynamicDateTimeRange is a range of time or dates, such as "last 7 hours" or "year-to-date". */ type DynamicDateTimeRange = { type: 'dynamic'; /** The unit of time to use for the range. */ unit: DateTimeUnit; /** The type of range to use. */ rangeType: DynamicRangeType; /** The amount of units to use for the range. */ amount: number; /** The anchor date to use for the range. */ anchor: string; /** The offset to use for the range. Defines the start of the range relative to the anchor or current date. */ offset: number; /** Whether or not to include the last unit in the range. For example, if the range is "last 7 hours", this would include the last hour. */ includeEndpoint?: boolean; /** Custom label to use for the range. */ label?: string; }; type DateTimeRange = DynamicDateTimeRange; type TextControl = ParametersViewControlBase & { type: 'text'; binding: string; placeholder?: string; }; type BooleanControl = ParametersViewControlBase & { type: 'boolean'; binding: string; subType: 'checkbox' | 'toggle' | 'radio'; text: string; layout: ViewControlLayout; textTrue: string; textFalse: string; }; type MultivalueEditorControl = ParametersViewControlBase & { type: 'multivalue'; binding: string; }; type DropdownControl = ParametersViewControlBase & { type: 'dropdown'; binding: string; }; type ListControl = ParametersViewControlBase & { type: 'list'; binding: string; layout: ViewControlLayout; columns: number; }; type NumberControl = ParametersViewControlBase & { type: 'number'; binding: string; range: [number, number]; step: number; subType: 'slider' | 'up-down'; layout?: 'X' | 'Y'; strictInput?: boolean; placeholder?: string; }; type NumberRangeControl = ParametersViewControlBase & { type: 'number-range'; binding: [string, string]; range: [number, number]; step: number; layout?: 'X' | 'Y'; }; type DateTimeControl = ParametersViewControlBase & { type: 'date-time'; binding: string; daysViewHeaderFormat: string; placeholder?: string; displayFormat: string; minDate?: string; maxDate?: string; }; type DateTimeRangeControl = ParametersViewControlBase & { type: 'date-time-range'; binding: [string, string]; daysViewHeaderFormat: string; placeholders: [string, string]; /** The custom ranges to display in the dropdown. */ ranges?: DateTimeRange[]; /** If it is true, defaultRanges will be displayed also */ showDefaultRanges?: boolean; displayFormat: string; minDate?: string; maxDate?: string; }; type DateRangeControl = ParametersViewControlBase & { type: 'date-range'; binding: [string, string]; maxRange: ['none'] | ['days' | 'months' | 'years', number]; viewMode: 'default' | 'days' | 'months' | 'years'; /** The ranges to display in the dropdown. */ ranges?: DateTimeRange[]; /** If it is true, defaultRanges will be displayed also */ showDefaultRanges?: boolean; daysViewHeaderFormat: string; displayFormat: string; minDate?: string; maxDate?: string; }; type TreeControl = ParametersViewControlBase & { type: 'tree'; binding: string; subType: 'list' | 'dropdown'; mode: 'recursive' | 'groupby' | 'pathstring'; fields: string[]; }; type NullifyControl = { type: 'nullify'; binding: string; text: string; }; type CustomControl = ParametersViewControlBase & { type: 'custom'; subtype: string; }; type ButtonControl = { type: 'button'; background: ViewControlColor; action: 'preview' | 'reset' | 'clear'; text: string; }; type HeadingControl = { type: 'heading'; text: string; font: ViewControlFont; color: ViewControlColor; strikeThrough: boolean; align: ViewControlAlignment; }; type PlainTextControl = { type: 'plain-text'; text: string; font: ViewControlFont; color: ViewControlColor; align: ViewControlTextAlignment; multiline: boolean; }; type ParametersViewControl = TextControl | BooleanControl | MultivalueEditorControl | DropdownControl | ListControl | NumberControl | NumberRangeControl | DateTimeControl | DateRangeControl | DateTimeRangeControl | TreeControl | NullifyControl | ButtonControl | HeadingControl | PlainTextControl | CustomControl; type ParametersViewControlArea = { left: number; top: number; width: number; height: number; labelWidthPercent?: number; control: T; }; type NumberControlWithExpression = Omit & { range: [number | string, number | string]; }; type NumberRangeControlWithExpression = Omit & { range: [number | string, number | string]; }; type ParametersViewControlEx = ParametersViewControl | NumberControlWithExpression | NumberRangeControlWithExpression; type ParametersViewControlAreaEx = ParametersViewControlArea; type NamedParameterViewEditorControl = { name: string; } & ParametersViewControlAreaEx; type ViewEditor = { controls: NamedParameterViewEditorControl[]; selection: string | null; canvas: { width: number; height: number; }; preferredLayout: 'free-form' | 'stack'; highlightRequired: boolean; }; declare const DataSource$1: Decoder$2<{ Name: string; $id?: string | undefined; Transaction?: boolean | undefined; DataSourceReference?: string | undefined; ConnectionProperties?: { DataProvider: string; Prompt?: string | undefined; ConnectString?: string | undefined; IntegratedSecurity?: boolean | undefined; } | undefined; }, { Name: string; Transaction: boolean; DataSourceReference: string; ConnectionProperties: { DataProvider: string; ConnectString: string; IntegratedSecurity: boolean; Prompt: string; }; } & { $id: string | undefined; } & { $dataProvider: string; }>; declare const DataSet: Decoder$2<{ Name: string; Fields?: { Name: string; Value?: string | undefined; DataField?: string | undefined; }[] | undefined; Query?: { DataSourceName: string; CommandType?: "Text" | "StoredProcedure" | "TableDirect" | undefined; CommandText?: string | null | undefined; QueryParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; Timeout?: number | undefined; } | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; CaseSensitivity?: "Auto" | "False" | "True" | undefined; Collation?: string | undefined; KanatypeSensitivity?: "Auto" | "False" | "True" | undefined; AccentSensitivity?: "Auto" | "False" | "True" | undefined; WidthSensitivity?: "Auto" | "False" | "True" | undefined; } & { $fieldsInfo?: string | undefined; }, { Fields: ({ Name: string; DataField: string; Value: Expr$1; } & { DataType: string; Aggregate: string; Format?: string | undefined; })[]; $calculatedFields: ({ Name: string; DataField: string; Value: Expr$1; } & { DataType: string; Aggregate: string; Format?: string | undefined; })[]; Collation: string; Name: string; Query: { DataSourceName: string; CommandType: "Text" | "StoredProcedure" | "TableDirect"; CommandText: string; QueryParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; Timeout: number; }; CaseSensitivity: "Auto" | "False" | "True"; KanatypeSensitivity: "Auto" | "False" | "True"; AccentSensitivity: "Auto" | "False" | "True"; WidthSensitivity: "Auto" | "False" | "True"; $queryFilter: any; $parentReference: string | null; $childrenReferences: string[]; Filters: Filters; }>; type Expr = Expr$1; declare const ReportCommonProps: { Page: Decoder$2<{ PageWidth?: string | undefined; PageHeight?: string | undefined; RightMargin?: string | undefined; LeftMargin?: string | undefined; TopMargin?: string | undefined; BottomMargin?: string | undefined; Columns?: number | undefined; ColumnSpacing?: string | undefined; PaperOrientation?: "Portrait" | "Landscape" | undefined; } | undefined, { $autoPageHeight: boolean; PageWidth: string; PageHeight: string; RightMargin: string; LeftMargin: string; TopMargin: string; BottomMargin: string; Columns: number; ColumnSpacing: string; PaperOrientation: "Portrait" | "Landscape"; }>; DataSources: Decoder$2<{ Name: string; $id?: string | undefined; Transaction?: boolean | undefined; DataSourceReference?: string | undefined; ConnectionProperties?: { DataProvider: string; Prompt?: string | undefined; ConnectString?: string | undefined; IntegratedSecurity?: boolean | undefined; } | undefined; }[] | undefined, ({ Name: string; Transaction: boolean; DataSourceReference: string; ConnectionProperties: { DataProvider: string; ConnectString: string; IntegratedSecurity: boolean; Prompt: string; }; } & { $id: string | undefined; } & { $dataProvider: string; })[]>; DataSets: Decoder$2<({ Name: string; Fields?: { Name: string; Value?: string | undefined; DataField?: string | undefined; }[] | undefined; Query?: { DataSourceName: string; CommandType?: "Text" | "StoredProcedure" | "TableDirect" | undefined; CommandText?: string | null | undefined; QueryParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; Timeout?: number | undefined; } | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; CaseSensitivity?: "Auto" | "False" | "True" | undefined; Collation?: string | undefined; KanatypeSensitivity?: "Auto" | "False" | "True" | undefined; AccentSensitivity?: "Auto" | "False" | "True" | undefined; WidthSensitivity?: "Auto" | "False" | "True" | undefined; } & { $fieldsInfo?: string | undefined; })[] | undefined, { Fields: ({ Name: string; DataField: string; Value: Expr$1; } & { DataType: string; Aggregate: string; Format?: string | undefined; })[]; $calculatedFields: ({ Name: string; DataField: string; Value: Expr$1; } & { DataType: string; Aggregate: string; Format?: string | undefined; })[]; Collation: string; Name: string; Query: { DataSourceName: string; CommandType: "Text" | "StoredProcedure" | "TableDirect"; CommandText: string; QueryParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; Timeout: number; }; CaseSensitivity: "Auto" | "False" | "True"; KanatypeSensitivity: "Auto" | "False" | "True"; AccentSensitivity: "Auto" | "False" | "True"; WidthSensitivity: "Auto" | "False" | "True"; $queryFilter: any; $parentReference: string | null; $childrenReferences: string[]; Filters: Filters; }[]>; ReportParts: Decoder$2<{ Name: string; Type?: undefined; Properties?: { Name: string; Type?: undefined; DefaultValue?: string | undefined; Category?: string | undefined; DisplayName?: string | undefined; Description?: string | undefined; PropertyType?: "string" | "boolean" | "length" | "borderStyle" | "color" | "float" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "textDecoration" | "integer" | "lineWidth" | "lineStyle" | undefined; }[] | undefined; DisplayName?: string | undefined; Description?: string | undefined; ReportItemName?: string | undefined; SizeMode?: "Grow" | "Fit" | undefined; }[] | undefined, { SizeMode: any; Name: string; Type: "reportpart"; DisplayName: string; Description: string; ReportItemName: string; Properties: { Name: string; Type: "reportpartproperty"; DisplayName: string; Description: string; Category: string; DefaultValue: Expr$1; PropertyType: "string" | "boolean" | "length" | "borderStyle" | "color" | "float" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "textDecoration" | "integer" | "lineWidth" | "lineStyle" | "String"; }[]; }[]>; TransformationInfo: Decoder$2<{ Name: string; SourceType: string; ResultType: string; Errors?: { Message: string; ErrorType: string; }[] | undefined; }[] | undefined, { Name: string; SourceType: string; ResultType: string; Errors: { ErrorType: string; Message: string; }[]; }[]>; Themes: Decoder$2; Name: Decoder$2; Description: Decoder$2; Author: Decoder$2; Width: Decoder$2; Language: Decoder$2; ConsumeContainerWhitespace: Decoder$2; DataElementName: Decoder$2; DataElementStyle: Decoder$2<"Auto" | "AttributeNormal" | "ElementNormal" | undefined, "Auto" | "AttributeNormal" | "ElementNormal">; DocumentMap: Decoder$2<{ Source?: "None" | "Labels" | "All" | "Headings" | undefined; NumberingStyle?: "None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian" | undefined; Levels?: ("None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian" | null)[] | undefined; } | undefined, { Source: "None" | "Labels" | "All" | "Headings"; NumberingStyle: "None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian"; Levels: ("None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian")[]; }>; ReportParameters: Decoder$2<{ Name: string; DataType: "Date" | "DateTime" | "String" | "Boolean" | "Integer" | "Float"; Type?: undefined; Hidden?: boolean | undefined; AllowBlank?: boolean | undefined; DefaultValue?: { Values?: string[] | undefined; DataSetReference?: { DataSetName: string; ValueField: string; LabelField?: string | undefined; } | undefined; } | undefined; Multiline?: boolean | undefined; MultiValue?: boolean | undefined; Nullable?: boolean | undefined; Prompt?: string | undefined; SelectAllValue?: string | undefined; UsedInQuery?: "Auto" | "False" | "True" | undefined; ValidValues?: { ParameterValues?: { Value?: string | undefined; Label?: string | undefined; }[] | undefined; DataSetReference?: { DataSetName: string; ValueField: string; LabelField?: string | undefined; } | undefined; OrderBy?: { Condition?: "None" | "Value" | "Label" | undefined; Direction?: "Ascending" | "Descending" | undefined; } | undefined; } | undefined; DisplayFormat?: string | undefined; }[] | undefined, { Type: "reportparameter"; AllowBlank: boolean; DataType: "Date" | "DateTime" | "String" | "Boolean" | "Integer" | "Float"; DefaultValue: { Values: Expr$1[]; DataSetReference: { DataSetName: string; ValueField: string; LabelField: string; }; }; Hidden: boolean; Multiline: boolean; MultiValue: boolean; Name: string; Nullable: boolean; Prompt: string; SelectAllValue: Expr$1; UsedInQuery: "Auto" | "False" | "True"; ValidValues: { ParameterValues: { Value: Expr$1 | undefined; Label: Expr$1 | undefined; }[]; DataSetReference: { DataSetName: string; ValueField: string; LabelField: string; }; OrderBy: { Condition: "None" | "Value" | "Label"; Direction: "Ascending" | "Descending"; }; }; DisplayFormat: string; }[]>; EmbeddedImages: Decoder$2<{ Name?: string | undefined; ImageData?: string | undefined; MIMEType?: string | undefined; }[] | undefined, { Name: string; ImageData: string; MIMEType: string; }[]>; LayoutOrder: Decoder$2<"ZOrder" | "NOrder" | undefined, "ZOrder" | "NOrder">; StartPageNumber: Decoder$2; Layers: Decoder$2<({ Name: string; Type?: undefined; DesignerLock?: boolean | undefined; DesignerTransparency?: number | undefined; DesignerVisible?: boolean | undefined; DesignerDataFieldVisible?: boolean | undefined; TargetDevice?: string | undefined; } | null)[] | undefined, { Type: "layer"; Name: string; DesignerLock: boolean; DesignerTransparency: number; DesignerVisible: boolean; DesignerDataFieldVisible: boolean; TargetDevice: string; }[]>; ThemeUri: Decoder$2; Code: Decoder$2; Classes: Decoder$2<{ ClassName?: string | undefined; InstanceName?: string | undefined; }[] | undefined, { ClassName: string; InstanceName: string; }[]>; CodeModules: Decoder$2; CustomProperties: Decoder$2<{ Value: string; Name: string; }[] | undefined, { Name: string; Value: string | number | null; }[]>; LocalizationResources: Decoder$2<{ Language?: string | undefined; Data?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined, { Language: string; Data: { Name: string; Value: string; }[]; }[]>; Libraries: Decoder$2<{ Name: string; Path: string; }[] | undefined, { Name: string; Path: string; }[]>; Version: Decoder$2<"9.0.0", string | undefined>; EmbeddedStylesheets: Decoder$2<{ Name: string; Styles: { Name: string; Properties?: { Color?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; MaxLevel?: string | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; DisplayFillCharacters?: string | undefined; DisplayPageNumber?: string | undefined; } | undefined; Parent?: string | undefined; }[]; }[] | undefined, { Name: string; Styles: { Name: string; Parent: string; Properties: WithStatus<{ Color: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; LineSpacing: string; CharacterSpacing: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Direction: "Default" | "LTR" | "RTL" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; TextIndent: string; LeadingChar: string; MaxLevel: Expr$1; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; DisplayFillCharacters: Expr$1; DisplayPageNumber: Expr$1; }>; }[]; }[]>; Stylesheet: Decoder$2<{ Source?: "Embedded" | "Shared" | undefined; Value?: string | undefined; } | undefined, { Source: "Embedded" | "Shared"; Value: string; }>; }; type NamedItemBase = { name: string; type: string; overflowName?: string; fieldName?: string; baseEntity: string | null; bookmark?: Expr; layerName?: string; $options?: any; $path?: string; children?: NamedItemBase[]; [index: string]: any; }; type NamedItem = NamedItemBase & { level: number; leftKey: number; rightKey: number; }; type ReportModelIndex = { DataSources?: TypeOf$2; DataSets?: TypeOf$2; ReportParameters?: TypeOf$2; EmbeddedImages?: TypeOf$2; Layers?: TypeOf$2; NamedItems?: NamedItem[]; }; declare const Report$1: Decoder$2<({ ReportSections?: ({ PageHeader?: { Type?: undefined; Height?: string | undefined; ReportItems?: ({ Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "contentplaceholder" | undefined; Text?: string | undefined; ZIndex?: number | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ [x: string]: any; Name: string; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }))[] | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; PrintOnFirstPage?: boolean | undefined; PrintOnLastPage?: boolean | undefined; } | null | undefined; Body?: { Type?: undefined; Height?: string | undefined; ReportItems?: ({ Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "contentplaceholder" | undefined; Text?: string | undefined; ZIndex?: number | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ [x: string]: any; Name: string; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }))[] | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; } | undefined; PageFooter?: { Type?: undefined; Height?: string | undefined; ReportItems?: ({ Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "contentplaceholder" | undefined; Text?: string | undefined; ZIndex?: number | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ [x: string]: any; Name: string; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }))[] | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; PrintOnFirstPage?: boolean | undefined; PrintOnLastPage?: boolean | undefined; } | null | undefined; Page?: { PageWidth?: string | undefined; PageHeight?: string | undefined; RightMargin?: string | undefined; LeftMargin?: string | undefined; TopMargin?: string | undefined; BottomMargin?: string | undefined; Columns?: number | undefined; ColumnSpacing?: string | undefined; PaperOrientation?: "Portrait" | "Landscape" | undefined; } | undefined; Name?: string | undefined; DisplayName?: string | undefined; Label?: string | undefined; Width?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Type?: "Continuous" | undefined; } | { FixedPage?: { Type?: undefined; Pages?: { Type?: undefined; ReportItems?: ({ Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ [x: string]: any; Name: string; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; } & { RepeatToFill?: boolean | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { OverflowName?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; }) | { Name: string; Left?: string | undefined; Top?: string | undefined; Type?: "overflowplaceholder" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; Width?: string | undefined; Height?: string | undefined; OverflowName?: string | undefined; } | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }))[] | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; ThrowIfPlaceHoldersEmpty?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Width?: string | undefined; Height?: string | undefined; LeftMargin?: string | undefined; RightMargin?: string | undefined; TopMargin?: string | undefined; BottomMargin?: string | undefined; PaperOrientation?: "Portrait" | "Landscape" | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetName?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; } | undefined; CollateBy?: "Value" | "Simple" | "ValueIndex" | undefined; Name?: string | undefined; DisplayName?: string | undefined; Label?: string | undefined; Page?: { PageWidth?: string | undefined; PageHeight?: string | undefined; RightMargin?: string | undefined; LeftMargin?: string | undefined; TopMargin?: string | undefined; BottomMargin?: string | undefined; Columns?: number | undefined; ColumnSpacing?: string | undefined; PaperOrientation?: "Portrait" | "Landscape" | undefined; } | undefined; Width?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Type?: "FixedPage" | undefined; })[] | undefined; Page?: { PageWidth?: string | undefined; PageHeight?: string | undefined; RightMargin?: string | undefined; LeftMargin?: string | undefined; TopMargin?: string | undefined; BottomMargin?: string | undefined; Columns?: number | undefined; ColumnSpacing?: string | undefined; PaperOrientation?: "Portrait" | "Landscape" | undefined; } | undefined; DataSources?: { Name: string; $id?: string | undefined; Transaction?: boolean | undefined; DataSourceReference?: string | undefined; ConnectionProperties?: { DataProvider: string; Prompt?: string | undefined; ConnectString?: string | undefined; IntegratedSecurity?: boolean | undefined; } | undefined; }[] | undefined; ReportParts?: { Name: string; Type?: undefined; Properties?: { Name: string; Type?: undefined; DefaultValue?: string | undefined; Category?: string | undefined; DisplayName?: string | undefined; Description?: string | undefined; PropertyType?: "string" | "boolean" | "length" | "borderStyle" | "color" | "float" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "textDecoration" | "integer" | "lineWidth" | "lineStyle" | undefined; }[] | undefined; DisplayName?: string | undefined; Description?: string | undefined; ReportItemName?: string | undefined; SizeMode?: "Grow" | "Fit" | undefined; }[] | undefined; TransformationInfo?: { Name: string; SourceType: string; ResultType: string; Errors?: { Message: string; ErrorType: string; }[] | undefined; }[] | undefined; Themes?: string[] | undefined; Name?: string | undefined; Description?: string | undefined; Author?: string | undefined; Width?: string | undefined; Language?: string | undefined; ConsumeContainerWhitespace?: boolean | undefined; DataElementName?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; DocumentMap?: { Source?: "None" | "Labels" | "All" | "Headings" | undefined; NumberingStyle?: "None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian" | undefined; Levels?: ("None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian" | null)[] | undefined; } | undefined; ReportParameters?: { Name: string; DataType: "Date" | "DateTime" | "String" | "Boolean" | "Integer" | "Float"; Type?: undefined; Hidden?: boolean | undefined; AllowBlank?: boolean | undefined; DefaultValue?: { Values?: string[] | undefined; DataSetReference?: { DataSetName: string; ValueField: string; LabelField?: string | undefined; } | undefined; } | undefined; Multiline?: boolean | undefined; MultiValue?: boolean | undefined; Nullable?: boolean | undefined; Prompt?: string | undefined; SelectAllValue?: string | undefined; UsedInQuery?: "Auto" | "False" | "True" | undefined; ValidValues?: { ParameterValues?: { Value?: string | undefined; Label?: string | undefined; }[] | undefined; DataSetReference?: { DataSetName: string; ValueField: string; LabelField?: string | undefined; } | undefined; OrderBy?: { Condition?: "None" | "Value" | "Label" | undefined; Direction?: "Ascending" | "Descending" | undefined; } | undefined; } | undefined; DisplayFormat?: string | undefined; }[] | undefined; EmbeddedImages?: { Name?: string | undefined; ImageData?: string | undefined; MIMEType?: string | undefined; }[] | undefined; LayoutOrder?: "ZOrder" | "NOrder" | undefined; StartPageNumber?: number | undefined; Layers?: ({ Name: string; Type?: undefined; DesignerLock?: boolean | undefined; DesignerTransparency?: number | undefined; DesignerVisible?: boolean | undefined; DesignerDataFieldVisible?: boolean | undefined; TargetDevice?: string | undefined; } | null)[] | undefined; ThemeUri?: string | undefined; Code?: string | undefined; Classes?: { ClassName?: string | undefined; InstanceName?: string | undefined; }[] | undefined; CodeModules?: string[] | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LocalizationResources?: { Language?: string | undefined; Data?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; Libraries?: { Name: string; Path: string; }[] | undefined; Version?: "9.0.0" | undefined; EmbeddedStylesheets?: { Name: string; Styles: { Name: string; Properties?: { Color?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; MaxLevel?: string | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; DisplayFillCharacters?: string | undefined; DisplayPageNumber?: string | undefined; } | undefined; Parent?: string | undefined; }[]; }[] | undefined; Stylesheet?: { Source?: "Embedded" | "Shared" | undefined; Value?: string | undefined; } | undefined; Type?: undefined; } & { DataSets?: { Name: string; Fields?: { Name: string; Value?: string | undefined; DataField?: string | undefined; }[] | undefined; Query?: { DataSourceName: string; CommandType?: "Text" | "StoredProcedure" | "TableDirect" | undefined; CommandText?: string | null | undefined; QueryParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; Timeout?: number | undefined; } | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; CaseSensitivity?: "Auto" | "False" | "True" | undefined; Collation?: string | undefined; KanatypeSensitivity?: "Auto" | "False" | "True" | undefined; AccentSensitivity?: "Auto" | "False" | "True" | undefined; WidthSensitivity?: "Auto" | "False" | "True" | undefined; }[] | undefined; }) | ({ FixedPage?: { Type?: undefined; Pages?: { Type?: undefined; ReportItems?: ({ Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ [x: string]: any; Name: string; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; } & { RepeatToFill?: boolean | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { OverflowName?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; }) | { Name: string; Left?: string | undefined; Top?: string | undefined; Type?: "overflowplaceholder" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; Width?: string | undefined; Height?: string | undefined; OverflowName?: string | undefined; } | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; } & { FixedWidth?: string | undefined; FixedHeight?: string | undefined; OverflowName?: string | undefined; Height?: string | undefined; Width?: string | undefined; }))[] | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; ThrowIfPlaceHoldersEmpty?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Width?: string | undefined; Height?: string | undefined; LeftMargin?: string | undefined; RightMargin?: string | undefined; TopMargin?: string | undefined; BottomMargin?: string | undefined; PaperOrientation?: "Portrait" | "Landscape" | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetName?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; } | undefined; CollateBy?: "Value" | "Simple" | "ValueIndex" | undefined; Page?: { PageWidth?: string | undefined; PageHeight?: string | undefined; RightMargin?: string | undefined; LeftMargin?: string | undefined; TopMargin?: string | undefined; BottomMargin?: string | undefined; Columns?: number | undefined; ColumnSpacing?: string | undefined; PaperOrientation?: "Portrait" | "Landscape" | undefined; } | undefined; DataSources?: { Name: string; $id?: string | undefined; Transaction?: boolean | undefined; DataSourceReference?: string | undefined; ConnectionProperties?: { DataProvider: string; Prompt?: string | undefined; ConnectString?: string | undefined; IntegratedSecurity?: boolean | undefined; } | undefined; }[] | undefined; ReportParts?: { Name: string; Type?: undefined; Properties?: { Name: string; Type?: undefined; DefaultValue?: string | undefined; Category?: string | undefined; DisplayName?: string | undefined; Description?: string | undefined; PropertyType?: "string" | "boolean" | "length" | "borderStyle" | "color" | "float" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "textDecoration" | "integer" | "lineWidth" | "lineStyle" | undefined; }[] | undefined; DisplayName?: string | undefined; Description?: string | undefined; ReportItemName?: string | undefined; SizeMode?: "Grow" | "Fit" | undefined; }[] | undefined; TransformationInfo?: { Name: string; SourceType: string; ResultType: string; Errors?: { Message: string; ErrorType: string; }[] | undefined; }[] | undefined; Themes?: string[] | undefined; Name?: string | undefined; Description?: string | undefined; Author?: string | undefined; Width?: string | undefined; Language?: string | undefined; ConsumeContainerWhitespace?: boolean | undefined; DataElementName?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; DocumentMap?: { Source?: "None" | "Labels" | "All" | "Headings" | undefined; NumberingStyle?: "None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian" | undefined; Levels?: ("None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian" | null)[] | undefined; } | undefined; ReportParameters?: { Name: string; DataType: "Date" | "DateTime" | "String" | "Boolean" | "Integer" | "Float"; Type?: undefined; Hidden?: boolean | undefined; AllowBlank?: boolean | undefined; DefaultValue?: { Values?: string[] | undefined; DataSetReference?: { DataSetName: string; ValueField: string; LabelField?: string | undefined; } | undefined; } | undefined; Multiline?: boolean | undefined; MultiValue?: boolean | undefined; Nullable?: boolean | undefined; Prompt?: string | undefined; SelectAllValue?: string | undefined; UsedInQuery?: "Auto" | "False" | "True" | undefined; ValidValues?: { ParameterValues?: { Value?: string | undefined; Label?: string | undefined; }[] | undefined; DataSetReference?: { DataSetName: string; ValueField: string; LabelField?: string | undefined; } | undefined; OrderBy?: { Condition?: "None" | "Value" | "Label" | undefined; Direction?: "Ascending" | "Descending" | undefined; } | undefined; } | undefined; DisplayFormat?: string | undefined; }[] | undefined; EmbeddedImages?: { Name?: string | undefined; ImageData?: string | undefined; MIMEType?: string | undefined; }[] | undefined; LayoutOrder?: "ZOrder" | "NOrder" | undefined; StartPageNumber?: number | undefined; Layers?: ({ Name: string; Type?: undefined; DesignerLock?: boolean | undefined; DesignerTransparency?: number | undefined; DesignerVisible?: boolean | undefined; DesignerDataFieldVisible?: boolean | undefined; TargetDevice?: string | undefined; } | null)[] | undefined; ThemeUri?: string | undefined; Code?: string | undefined; Classes?: { ClassName?: string | undefined; InstanceName?: string | undefined; }[] | undefined; CodeModules?: string[] | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LocalizationResources?: { Language?: string | undefined; Data?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; Libraries?: { Name: string; Path: string; }[] | undefined; Version?: "9.0.0" | undefined; EmbeddedStylesheets?: { Name: string; Styles: { Name: string; Properties?: { Color?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; MaxLevel?: string | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; DisplayFillCharacters?: string | undefined; DisplayPageNumber?: string | undefined; } | undefined; Parent?: string | undefined; }[]; }[] | undefined; Stylesheet?: { Source?: "Embedded" | "Shared" | undefined; Value?: string | undefined; } | undefined; Type?: undefined; } & { DataSets?: { Name: string; Fields?: { Name: string; Value?: string | undefined; DataField?: string | undefined; }[] | undefined; Query?: { DataSourceName: string; CommandType?: "Text" | "StoredProcedure" | "TableDirect" | undefined; CommandText?: string | null | undefined; QueryParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; Timeout?: number | undefined; } | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; CaseSensitivity?: "Auto" | "False" | "True" | undefined; Collation?: string | undefined; KanatypeSensitivity?: "Auto" | "False" | "True" | undefined; AccentSensitivity?: "Auto" | "False" | "True" | undefined; WidthSensitivity?: "Auto" | "False" | "True" | undefined; }[] | undefined; }), ({ Language: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Name: string; Type: "multisectionreport"; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; DataElementName: string; Width: string; Page: { $autoPageHeight: boolean; PageWidth: string; PageHeight: string; RightMargin: string; LeftMargin: string; TopMargin: string; BottomMargin: string; Columns: number; ColumnSpacing: string; PaperOrientation: "Portrait" | "Landscape"; }; DocumentMap: { Source: "None" | "Labels" | "All" | "Headings"; NumberingStyle: "None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian"; Levels: ("None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian")[]; }; ReportParameters: { Type: "reportparameter"; AllowBlank: boolean; DataType: "Date" | "DateTime" | "String" | "Boolean" | "Integer" | "Float"; DefaultValue: { Values: Expr$1[]; DataSetReference: { DataSetName: string; ValueField: string; LabelField: string; }; }; Hidden: boolean; Multiline: boolean; MultiValue: boolean; Name: string; Nullable: boolean; Prompt: string; SelectAllValue: Expr$1; UsedInQuery: "Auto" | "False" | "True"; ValidValues: { ParameterValues: { Value: Expr$1 | undefined; Label: Expr$1 | undefined; }[]; DataSetReference: { DataSetName: string; ValueField: string; LabelField: string; }; OrderBy: { Condition: "None" | "Value" | "Label"; Direction: "Ascending" | "Descending"; }; }; DisplayFormat: string; }[]; DataSources: ({ Name: string; Transaction: boolean; DataSourceReference: string; ConnectionProperties: { DataProvider: string; ConnectString: string; IntegratedSecurity: boolean; Prompt: string; }; } & { $id: string | undefined; } & { $dataProvider: string; })[]; DataSets: { Fields: ({ Name: string; DataField: string; Value: Expr$1; } & { DataType: string; Aggregate: string; Format?: string | undefined; })[]; $calculatedFields: ({ Name: string; DataField: string; Value: Expr$1; } & { DataType: string; Aggregate: string; Format?: string | undefined; })[]; Collation: string; Name: string; Query: { DataSourceName: string; CommandType: "Text" | "StoredProcedure" | "TableDirect"; CommandText: string; QueryParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; Timeout: number; }; CaseSensitivity: "Auto" | "False" | "True"; KanatypeSensitivity: "Auto" | "False" | "True"; AccentSensitivity: "Auto" | "False" | "True"; WidthSensitivity: "Auto" | "False" | "True"; $queryFilter: any; $parentReference: string | null; $childrenReferences: string[]; Filters: Filters; }[]; Layers: ({ Type: "layer"; Name: string; DesignerLock: boolean; DesignerTransparency: number; DesignerVisible: boolean; DesignerDataFieldVisible: boolean; TargetDevice: string; } & Selectable$1)[]; Libraries: { Name: string; Path: string; }[]; Stylesheet: { Source: "Embedded" | "Shared"; Value: string; }; Description: string; Version: string | undefined; Author: string; Themes: string[]; LayoutOrder: "ZOrder" | "NOrder"; ConsumeContainerWhitespace: boolean; EmbeddedImages: { Name: string; ImageData: string; MIMEType: string; }[]; StartPageNumber: number; ThemeUri: string; Code: string; Classes: { ClassName: string; InstanceName: string; }[]; CodeModules: string[]; LocalizationResources: { Language: string; Data: { Name: string; Value: string; }[]; }[]; ReportParts: { SizeMode: any; Name: string; Type: "reportpart"; DisplayName: string; Description: string; ReportItemName: string; Properties: { Name: string; Type: "reportpartproperty"; DisplayName: string; Description: string; Category: string; DefaultValue: Expr$1; PropertyType: "string" | "boolean" | "length" | "borderStyle" | "color" | "float" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "textDecoration" | "integer" | "lineWidth" | "lineStyle" | "String"; }[]; }[]; EmbeddedStylesheets: { Name: string; Styles: { Name: string; Parent: string; Properties: WithStatus<{ Color: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; LineSpacing: string; CharacterSpacing: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Direction: "Default" | "LTR" | "RTL" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; TextIndent: string; LeadingChar: string; MaxLevel: Expr$1; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; DisplayFillCharacters: Expr$1; DisplayPageNumber: Expr$1; }>; }[]; }[]; $selected: string; $primary: boolean; TransformationInfo: { Name: string; SourceType: string; ResultType: string; Errors: { ErrorType: string; Message: string; }[]; }[]; $activeSectionIndex: number; ReportSections: ((({ PageHeader: ({ $place: { Height: string; }; $width: string; $height: string; Type: "pagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PrintOnFirstPage: boolean; PrintOnLastPage: boolean; } & { Name: string; } & Selectable$1) | null; Body: { $place: { Height: string; }; $width: string; $height: string; Type: "section"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; } & { Name: string; } & Selectable$1; PageFooter: ({ $place: { Height: string; }; $width: string; $height: string; Type: "pagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PrintOnFirstPage: boolean; PrintOnLastPage: boolean; } & { Name: string; } & Selectable$1) | null; Page: { $autoPageHeight: boolean; PageWidth: string; PageHeight: string; RightMargin: string; LeftMargin: string; TopMargin: string; BottomMargin: string; Columns: number; ColumnSpacing: string; PaperOrientation: "Portrait" | "Landscape"; }; Name: string; DisplayName: string | undefined; Label: string; Width: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Type: "Continuous"; } | { FixedPage: Omit; ToggleItem: string; }; Width: string | undefined; Height: string | undefined; LeftMargin: string | undefined; RightMargin: string | undefined; TopMargin: string | undefined; BottomMargin: string | undefined; PaperOrientation: "Portrait" | "Landscape"; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; DataSetName: string; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; }, "Pages"> & { Pages: { Name: string; Type: "fixedpagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ThrowIfPlaceHoldersEmpty: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Width: string | undefined; Height: string | undefined; LeftMargin: string | undefined; RightMargin: string | undefined; TopMargin: string | undefined; BottomMargin: string | undefined; PaperOrientation: "Portrait" | "Landscape"; }[]; }, "Pages"> & { Pages: ({ Name: string; Type: "fixedpagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ThrowIfPlaceHoldersEmpty: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Width: string | undefined; Height: string | undefined; LeftMargin: string | undefined; RightMargin: string | undefined; TopMargin: string | undefined; BottomMargin: string | undefined; PaperOrientation: "Portrait" | "Landscape"; } & Selectable$1)[]; }, "Pages"> & { Pages: ({ Name: string; Type: "fixedpagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ThrowIfPlaceHoldersEmpty: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Width: string | undefined; Height: string | undefined; LeftMargin: string | undefined; RightMargin: string | undefined; TopMargin: string | undefined; BottomMargin: string | undefined; PaperOrientation: "Portrait" | "Landscape"; } & Selectable$1 & { $active?: boolean | undefined; })[]; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; }, "Filters"> & { Filters: Filters; }; CollateBy: "Value" | "Simple" | "ValueIndex"; Name: string; DisplayName: string | undefined; Label: string; Page: { PageWidth: string; PageHeight: string; RightMargin: string; LeftMargin: string; TopMargin: string; BottomMargin: string; Columns: number; ColumnSpacing: string; PaperOrientation: "Portrait" | "Landscape"; }; Width: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Type: "FixedPage"; } | { $active: boolean; PageHeader: ({ $place: { Height: string; }; $width: string; $height: string; Type: "pagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PrintOnFirstPage: boolean; PrintOnLastPage: boolean; } & { Name: string; } & Selectable$1) | null; Body: { $place: { Height: string; }; $width: string; $height: string; Type: "section"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; } & { Name: string; } & Selectable$1; PageFooter: ({ $place: { Height: string; }; $width: string; $height: string; Type: "pagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PrintOnFirstPage: boolean; PrintOnLastPage: boolean; } & { Name: string; } & Selectable$1) | null; Page: { $autoPageHeight: boolean; PageWidth: string; PageHeight: string; RightMargin: string; LeftMargin: string; TopMargin: string; BottomMargin: string; Columns: number; ColumnSpacing: string; PaperOrientation: "Portrait" | "Landscape"; }; Name: string; DisplayName: string | undefined; Label: string; Width: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Type: "Continuous"; } | { $active: boolean; FixedPage: Omit; ToggleItem: string; }; Width: string | undefined; Height: string | undefined; LeftMargin: string | undefined; RightMargin: string | undefined; TopMargin: string | undefined; BottomMargin: string | undefined; PaperOrientation: "Portrait" | "Landscape"; }[]; Group: { Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }; DataSetName: string; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; }, "Pages"> & { Pages: { Name: string; Type: "fixedpagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ThrowIfPlaceHoldersEmpty: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Width: string | undefined; Height: string | undefined; LeftMargin: string | undefined; RightMargin: string | undefined; TopMargin: string | undefined; BottomMargin: string | undefined; PaperOrientation: "Portrait" | "Landscape"; }[]; }, "Pages"> & { Pages: ({ Name: string; Type: "fixedpagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ThrowIfPlaceHoldersEmpty: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Width: string | undefined; Height: string | undefined; LeftMargin: string | undefined; RightMargin: string | undefined; TopMargin: string | undefined; BottomMargin: string | undefined; PaperOrientation: "Portrait" | "Landscape"; } & Selectable$1)[]; }, "Pages"> & { Pages: ({ Name: string; Type: "fixedpagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ThrowIfPlaceHoldersEmpty: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Width: string | undefined; Height: string | undefined; LeftMargin: string | undefined; RightMargin: string | undefined; TopMargin: string | undefined; BottomMargin: string | undefined; PaperOrientation: "Portrait" | "Landscape"; } & Selectable$1 & { $active?: boolean | undefined; })[]; }, "Group"> & { Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; }, "Filters"> & { Filters: Filters; }; CollateBy: "Value" | "Simple" | "ValueIndex"; Name: string; DisplayName: string | undefined; Label: string; Page: { PageWidth: string; PageHeight: string; RightMargin: string; LeftMargin: string; TopMargin: string; BottomMargin: string; Columns: number; ColumnSpacing: string; PaperOrientation: "Portrait" | "Landscape"; }; Width: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Type: "FixedPage"; }) & Selectable$1) & Selectable$1 & { $active?: boolean | undefined; })[]; $paramsView: ViewEditor | null; $conversionInfo: string[] | null; $index: ReportModelIndex; $masterReportContent: any; $masterReport: string | null; $currentLayerName: string; $activeStylesheet: { Name: string; Styles: { Name: string; Parent: string; Properties: WithStatus<{ Color: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; LineSpacing: string; CharacterSpacing: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Direction: "Default" | "LTR" | "RTL" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; TextIndent: string; LeadingChar: string; MaxLevel: Expr$1; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; DisplayFillCharacters: Expr$1; DisplayPageNumber: Expr$1; }>; }[]; } | null; $displayType?: "Page" | "Galley" | undefined; $sizeType?: "Default" | "FitToPage" | "FitToWidth" | undefined; $isMasterReport?: boolean | undefined; $collapseWhiteSpace?: boolean | undefined; } | { Language: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Name: string; Group: Omit<{ Name: string; DocumentMapLabel: string; GroupExpressions: Expr$1[]; PageBreak: "None" | "Start" | "End" | "StartAndEnd" | "Between"; PageBreakDisabled: Expr$1; NewPage: "Next" | "Odd" | "Even"; Filters: { FilterExpression: string | number | null; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: Expr$1[]; }[]; ParentGroup: string | number | null; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; DataCollectionName: string; NewSection: boolean; }, "Filters"> & { Filters: Filters; }; Type: "fixedpagereport"; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; DataElementName: string; DataSetName: string; Filters: Filters; SortExpressions: { Value: Expr$1; Direction: "Ascending" | "Descending"; }[]; Width: string; Pages: { Name: string; Type: "fixedpagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; ThrowIfPlaceHoldersEmpty: boolean; Visibility: { Hidden: Expr$1; ToggleItem: string; }; Width: string | undefined; Height: string | undefined; LeftMargin: string | undefined; RightMargin: string | undefined; TopMargin: string | undefined; BottomMargin: string | undefined; PaperOrientation: "Portrait" | "Landscape"; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; $active?: boolean | undefined; }[]; Page: { $autoPageHeight: boolean; PageWidth: string; PageHeight: string; RightMargin: string; LeftMargin: string; TopMargin: string; BottomMargin: string; Columns: number; ColumnSpacing: string; PaperOrientation: "Portrait" | "Landscape"; }; DocumentMap: { Source: "None" | "Labels" | "All" | "Headings"; NumberingStyle: "None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian"; Levels: ("None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian")[]; }; ReportParameters: { Type: "reportparameter"; AllowBlank: boolean; DataType: "Date" | "DateTime" | "String" | "Boolean" | "Integer" | "Float"; DefaultValue: { Values: Expr$1[]; DataSetReference: { DataSetName: string; ValueField: string; LabelField: string; }; }; Hidden: boolean; Multiline: boolean; MultiValue: boolean; Name: string; Nullable: boolean; Prompt: string; SelectAllValue: Expr$1; UsedInQuery: "Auto" | "False" | "True"; ValidValues: { ParameterValues: { Value: Expr$1 | undefined; Label: Expr$1 | undefined; }[]; DataSetReference: { DataSetName: string; ValueField: string; LabelField: string; }; OrderBy: { Condition: "None" | "Value" | "Label"; Direction: "Ascending" | "Descending"; }; }; DisplayFormat: string; }[]; DataSources: ({ Name: string; Transaction: boolean; DataSourceReference: string; ConnectionProperties: { DataProvider: string; ConnectString: string; IntegratedSecurity: boolean; Prompt: string; }; } & { $id: string | undefined; } & { $dataProvider: string; })[]; DataSets: { Fields: ({ Name: string; DataField: string; Value: Expr$1; } & { DataType: string; Aggregate: string; Format?: string | undefined; })[]; $calculatedFields: ({ Name: string; DataField: string; Value: Expr$1; } & { DataType: string; Aggregate: string; Format?: string | undefined; })[]; Collation: string; Name: string; Query: { DataSourceName: string; CommandType: "Text" | "StoredProcedure" | "TableDirect"; CommandText: string; QueryParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; Timeout: number; }; CaseSensitivity: "Auto" | "False" | "True"; KanatypeSensitivity: "Auto" | "False" | "True"; AccentSensitivity: "Auto" | "False" | "True"; WidthSensitivity: "Auto" | "False" | "True"; $queryFilter: any; $parentReference: string | null; $childrenReferences: string[]; Filters: Filters; }[]; Libraries: { Name: string; Path: string; }[]; Stylesheet: { Source: "Embedded" | "Shared"; Value: string; }; Description: string; Version: string | undefined; Author: string; Themes: string[]; LayoutOrder: "ZOrder" | "NOrder"; ConsumeContainerWhitespace: boolean; EmbeddedImages: { Name: string; ImageData: string; MIMEType: string; }[]; StartPageNumber: number; ThemeUri: string; Code: string; Classes: { ClassName: string; InstanceName: string; }[]; CodeModules: string[]; LocalizationResources: { Language: string; Data: { Name: string; Value: string; }[]; }[]; ReportParts: { SizeMode: any; Name: string; Type: "reportpart"; DisplayName: string; Description: string; ReportItemName: string; Properties: { Name: string; Type: "reportpartproperty"; DisplayName: string; Description: string; Category: string; DefaultValue: Expr$1; PropertyType: "string" | "boolean" | "length" | "borderStyle" | "color" | "float" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "textDecoration" | "integer" | "lineWidth" | "lineStyle" | "String"; }[]; }[]; EmbeddedStylesheets: { Name: string; Styles: { Name: string; Parent: string; Properties: WithStatus<{ Color: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; LineSpacing: string; CharacterSpacing: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Direction: "Default" | "LTR" | "RTL" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; TextIndent: string; LeadingChar: string; MaxLevel: Expr$1; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; DisplayFillCharacters: Expr$1; DisplayPageNumber: Expr$1; }>; }[]; }[]; $selected: string; $primary: boolean; CollateBy: "Value" | "Simple" | "ValueIndex"; TransformationInfo: { Name: string; SourceType: string; ResultType: string; Errors: { ErrorType: string; Message: string; }[]; }[]; FixedPageDataElementName: string; FixedPageDataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; $activePageIndex: number; Layers: ({ Type: "layer"; Name: string; DesignerLock: boolean; DesignerTransparency: number; DesignerVisible: boolean; DesignerDataFieldVisible: boolean; TargetDevice: string; } & Selectable$1)[]; $paramsView: ViewEditor | null; $conversionInfo: string[] | null; $index: ReportModelIndex; $masterReportContent: any; $masterReport: string | null; $currentLayerName: string; $activeStylesheet: { Name: string; Styles: { Name: string; Parent: string; Properties: WithStatus<{ Color: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; LineSpacing: string; CharacterSpacing: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Direction: "Default" | "LTR" | "RTL" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; TextIndent: string; LeadingChar: string; MaxLevel: Expr$1; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; DisplayFillCharacters: Expr$1; DisplayPageNumber: Expr$1; }>; }[]; } | null; $displayType?: "Page" | "Galley" | undefined; $sizeType?: "Default" | "FitToPage" | "FitToWidth" | undefined; $isMasterReport?: boolean | undefined; $collapseWhiteSpace?: boolean | undefined; }) & Selectable$1>; declare const Dashboard: Decoder$2<{ ReportSections?: { PageHeader?: { Type?: undefined; Height?: string | undefined; ReportItems?: ({ Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "contentplaceholder" | undefined; Text?: string | undefined; ZIndex?: number | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ [x: string]: any; Name: string; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }))[] | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; PrintOnFirstPage?: boolean | undefined; PrintOnLastPage?: boolean | undefined; } | null | undefined; PageFooter?: { Type?: undefined; Height?: string | undefined; ReportItems?: ({ Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "contentplaceholder" | undefined; Text?: string | undefined; ZIndex?: number | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ [x: string]: any; Name: string; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }))[] | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; PrintOnFirstPage?: boolean | undefined; PrintOnLastPage?: boolean | undefined; } | null | undefined; Page?: { PageWidth?: string | undefined; PageHeight?: string | undefined; RightMargin?: string | undefined; LeftMargin?: string | undefined; TopMargin?: string | undefined; BottomMargin?: string | undefined; Columns?: number | undefined; ColumnSpacing?: string | undefined; PaperOrientation?: "Portrait" | "Landscape" | undefined; } | undefined; Body?: { Type?: undefined; Height?: string | undefined; ReportItems?: ({ Name: string; Type?: "line" | undefined; Label?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; StartPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; EndPoint?: { X?: string | undefined; Y?: string | undefined; } | undefined; LineWidth?: string | undefined; LineStyle?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; } | ({ Name: string; Type?: "textbox" | undefined; Value?: string | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; Color?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CanShrink?: boolean | undefined; ToggleImage?: { InitialState: string; } | undefined; UserSort?: { SortExpression: string; SortExpressionScope?: string | undefined; SortTarget?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "checkbox" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WrapMode?: "NoWrap" | "CharWrap" | "WordWrap" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; Text?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; Checked?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "list" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; DataInstanceName?: string | undefined; DataInstanceElementOutput?: "Output" | "NoOutput" | undefined; RowsOrColumnsCount?: number | undefined; GrowDirection?: "Column" | "ColumnReverse" | "Row" | "RowReverse" | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "table" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { Type?: undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; } | null | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillPage?: boolean | undefined; DetailDataElementName?: string | undefined; DetailDataCollectionName?: string | undefined; DetailDataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatToFill?: boolean | undefined; RepeatBlankRows?: "None" | "FillPage" | "FillGroup" | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; TableColumns?: { Type?: undefined; Width?: string | undefined; FixedHeader?: boolean | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; AutoWidth?: "None" | "Proportional" | undefined; }[] | undefined; TableGroups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Header?: { Type?: undefined; FixedHeader?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Footer?: { Type?: undefined; PrintAtBottom?: boolean | undefined; TableRows?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; Type?: undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; TableCells?: ({ Item: { Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }; ColSpan?: number | undefined; RowSpan?: number | undefined; AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; } | null)[] | undefined; }[] | undefined; RepeatOnNewPage?: boolean | undefined; } | null | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; }[] | undefined; MaxDetailsPerPage?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tablix" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FrozenRows?: number | undefined; FrozenColumns?: number | undefined; RepeatColumnHeaders?: boolean | undefined; RepeatRowHeaders?: boolean | undefined; GroupsBeforeRowHeaders?: number | undefined; LayoutDirection?: "LTR" | "RTL" | undefined; RowHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; ColumnHierarchy?: { LevelSizes?: string[] | undefined; Members?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & { Children?: ({ Header?: { Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | undefined; LevelCount?: number | undefined; } | null | undefined; BodyIndex?: number | undefined; BodyCount?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; KeepTogether?: boolean | undefined; Group?: { PrintFooterAtBottom?: boolean | undefined; Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | null | undefined; KeepWithGroup?: "None" | "Before" | "After" | undefined; RepeatOnNewPage?: boolean | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; } & any)[] | undefined; })[] | undefined; })[] | undefined; } | undefined; Corner?: ({ RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[][] | undefined; Body?: { Columns?: string[] | undefined; Rows?: { Height?: string | undefined; Cells?: ({ AutoMergeMode?: "Never" | "Always" | "Restricted" | undefined; RowSpan?: number | undefined; ColSpan?: number | undefined; Item?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; }) | null | undefined; } | null)[] | undefined; }[] | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "rectangle" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; PageName?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ConsumeWhiteSpace?: boolean | undefined; Overflow?: "Auto" | "Scroll" | "Clip" | "Grow" | undefined; LinkToChild?: string | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bandedlist" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Details?: { ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; ConsumeWhiteSpace?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Groups?: { Type?: undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; KeepTogether?: boolean | undefined; PreventOrphanedHeader?: boolean | undefined; PreventOrphanedFooter?: boolean | undefined; Header?: { RepeatOnNewPage?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; Footer?: { RepeatOnNewPage?: boolean | undefined; PrintAtBottom?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; Name?: string | null | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; CanShrink?: boolean | undefined; CanGrow?: boolean | undefined; KeepTogether?: boolean | undefined; Height?: string | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Type?: undefined; } | null | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "subreport" | undefined; ReportName?: string | undefined; Parameters?: { ParameterName?: string | undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; Style?: { Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; NoRowsMessage?: string | undefined; PageName?: string | undefined; MergeTransactions?: boolean | undefined; SubstituteThemeOnSubreport?: boolean | undefined; InheritStyleSheet?: boolean | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "shape" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; RoundingRadius?: { Default?: string | undefined; TopLeft?: string | undefined; TopRight?: string | undefined; BottomLeft?: string | undefined; BottomRight?: string | undefined; } | undefined; ShapeStyle?: "Rectangle" | "RoundRect" | "Ellipse" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "tableofcontents" | undefined; Style?: { BackgroundColor?: string | undefined; MaxLevel?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Levels?: { Type?: undefined; LevelName?: string | undefined; DataElementName?: string | undefined; DisplayFillCharacters?: boolean | undefined; DisplayPageNumber?: boolean | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; StyleName?: string | undefined; }[] | undefined; } & { $style?: undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "barcode" | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; InvalidBarcodeText?: string | undefined; Symbology?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | undefined; CheckSum?: boolean | undefined; BarHeight?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionLocation?: "None" | "Above" | "Below" | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; GroupNumber?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Ean128Fnc1Options?: { Resolution?: number | undefined; ModuleSize?: number | undefined; BarAdjust?: number | undefined; } | undefined; Gs1CompositeOptions?: { CompositeType?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; SegmentIndex?: number | undefined; SegmentCount?: number | undefined; FileID?: number | undefined; } | undefined; MicroQrCodeOptions?: { Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Encoding?: string | undefined; } | undefined; NarrowBarWidth?: string | undefined; NWRation?: number | undefined; Pdf417Options?: { Columns?: number | undefined; Rows?: number | undefined; ErrorCorrectionLevel?: "Level0" | "Level1" | "Level2" | "Level3" | "Level4" | "Level5" | "Level6" | "Level7" | "Level8" | undefined; Pdf417Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Version?: number | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Encoding?: string | undefined; } | undefined; QuietZone?: { Left?: string | undefined; Right?: string | undefined; Top?: string | undefined; Bottom?: string | undefined; } | undefined; Rotation?: string | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; SupplementOptions?: { Value?: string | undefined; BarHeight?: string | undefined; CaptionLocation?: string | undefined; Spacing?: string | undefined; } | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "dvchart" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundGradientEndColor?: string | undefined; BackgroundGradientType?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | `=${string}` | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Color?: string | undefined; LineHeight?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; NewSection?: boolean | undefined; Plots?: ({ Type?: undefined; PlotType?: "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | undefined; PlotName?: string | undefined; Encodings?: { Values?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | { FieldType?: "Complex" | undefined; Subfields?: { Key?: string | undefined; Value?: string | undefined; Caption?: string | undefined; }[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Category?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | undefined; Details?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Group?: "None" | "Cluster" | "Stack" | undefined; ExcludeNulls?: boolean | undefined; Sort?: "None" | "Ascending" | "Descending" | undefined; SortingField?: string | undefined; SortingAggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; Color?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Shape?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Size?: { Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; } | undefined; Texts?: ({ Type?: undefined; Field?: { FieldType?: "Simple" | undefined; Value?: string[] | undefined; Captions?: (string | null)[] | undefined; } | undefined; Target?: "Label" | "ToolTip" | undefined; Aggregate?: "None" | "Average" | "Count" | "CountDistinct" | "CountOfAll" | "List" | "Max" | "Min" | "PopulationStandardDeviation" | "PopulationVariance" | "Range" | "StandardDeviation" | "Sum" | "Variance" | undefined; } | null)[] | undefined; } | undefined; Config?: { Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; AxisMode?: "Cartesian" | "Radial" | "Polygonal" | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; BarLines?: boolean | undefined; BarLineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; ClippingMode?: "None" | "Clip" | "Fit" | undefined; CustomLabels?: ({ Type?: undefined; Style?: { FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; } | undefined; Text?: string | undefined; OffsetX?: string | undefined; OffsetY?: string | undefined; } | null)[] | undefined; InnerRadius?: number | undefined; LineAspect?: "Default" | "Spline" | "StepCenter" | "StepLeft" | "StepRight" | undefined; LineStyle?: { Color?: string | undefined; Style?: "Default" | "None" | "Dotted" | "Dashed" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Groove" | "Ridge" | "Inset" | "WindowInset" | "Outset" | `=${string}` | undefined; Width?: string | undefined; } | undefined; Offset?: number | undefined; Opacity?: number | undefined; Overlays?: { Name?: string | undefined; Type?: undefined; OverlayType?: "ReferenceLine" | "ReferenceBand" | "LinearTrendline" | "ExponentialTrendline" | "PowerTrendline" | "LogarithmicTrendline" | "PolynomialTrendline" | "FourierTrendline" | "MovingAverageTrendline" | "CumulativeMovingAverageTrendline" | "ExponentialMovingAverageTrendline" | "WeightedMovingAverageTrendline" | "MovingAnnualTotalTrendline" | undefined; Display?: "Front" | "Back" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Field?: string | undefined; DetailLevel?: "Group" | "Total" | undefined; LegendLabel?: string | undefined; Value?: string | undefined; Axis?: "X" | "Y" | undefined; AggregateType?: "Average" | "Count" | "Max" | "Min" | "Sum" | "Median" | "Percentile" | undefined; Start?: number | undefined; End?: number | undefined; Order?: number | undefined; Period?: number | undefined; ForwardForecastPeriod?: number | undefined; BackwardForecastPeriod?: number | undefined; Intercept?: number | null | undefined; }[] | undefined; Pointers?: ({ Type?: undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; NeedleWidth?: string | undefined; NeedlePinWidth?: string | undefined; End?: string | undefined; } | null)[] | undefined; Radial?: boolean | undefined; ShowNulls?: "Gaps" | "Connected" | "Zeros" | undefined; StartAngle?: number | undefined; Style?: { BackgroundColor?: string | undefined; } | undefined; SwapAxes?: boolean | undefined; Sweep?: number | undefined; SymbolOpacity?: number | undefined; SymbolSize?: number | undefined; Symbols?: boolean | undefined; SymbolShape?: "Auto" | "X" | "Dot" | "Box" | "Diamond" | "Triangle" | "Dash" | "Plus" | undefined; SymbolStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; } | undefined; Text?: { ConnectingLine?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LinePosition?: "Center" | "Auto" | undefined; Offset?: number | undefined; OverlappingLabels?: "Auto" | "Show" | "Hide" | undefined; TextPosition?: "Center" | "Auto" | "Inside" | "Outside" | undefined; Template?: string | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; } | undefined; Tooltip?: { Template?: string | undefined; } | undefined; Rules?: { Name?: string | undefined; Type?: undefined; Condition?: string | undefined; RuleProperties?: { TargetProperty?: "BackgroundColor" | "LineWidth" | "LineStyle" | "LineColor" | "SymbolBackgroundColor" | "SymbolLineColor" | "SymbolLineStyle" | "SymbolLineWidth" | "LabelTemplate" | "TooltipTemplate" | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; UnpivotData?: boolean | undefined; } | undefined; PlotChartType?: "Column" | "Bar" | "Line" | "Area" | "Scatter" | "HighLowOpenClose" | "Candlestick" | "Custom" | "Pie" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "HighLowClose" | "PolarColumn" | "PolarBar" | "RadarArea" | "RadarBubble" | "RadarScatter" | "RadarLine" | "RangeArea" | "RangeBar" | "RangeColumn" | "Gauge" | undefined; PlotChartSubtype?: "Plain" | "Clustered" | "Stacked" | undefined; } | null)[] | undefined; Bar?: { BottomWidth?: number | undefined; NeckHeight?: number | undefined; Overlap?: number | undefined; TopWidth?: number | undefined; Width?: number | undefined; } | undefined; Header?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Footer?: { Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; Height?: string | number | undefined; HAlign?: "Center" | "Left" | "Right" | undefined; VAlign?: "Top" | "Middle" | "Bottom" | undefined; Type?: undefined; } | undefined; Palette?: "Light" | "Median" | "Custom" | "Office" | "Aspect" | "Blue" | "Blue2" | "BlueGreen" | "BlueWarm" | "Cerulan" | "Cocoa" | "Coral" | "Cyborg" | "Dark" | "Darkly" | "Flatly" | "Grayscale" | "Green" | "GreenYellow" | "HighContrast" | "Marquee" | "Midnight" | "Modern" | "Office2010" | "Orange" | "OrangeRed" | "Organic" | "Paper" | "Red" | "RedOrange" | "RedViolet" | "Slate" | "Slipstream" | "Standard" | "Superhero" | "Violet" | "Violet2" | "Yellow" | "YellowOrange" | "Zen" | undefined; CustomPalette?: string[] | undefined; Legend?: { Wrapping?: boolean | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | undefined; PlotArea?: { Type?: undefined; Axes?: ({ Type?: undefined; AxisLine?: boolean | undefined; AxisType?: "X" | "Y" | undefined; DateMode?: "Default" | "Millisecond" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" | undefined; Format?: string | undefined; LabelAngle?: number | undefined; LabelField?: string | undefined; Labels?: boolean | undefined; LabelStyle?: { WritingMode?: "lr-tb" | "tb-rl" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; LineStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; LogBase?: number | undefined; MajorGrid?: boolean | undefined; MajorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MajorTickSize?: string | undefined; MajorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MajorUnit?: string | undefined; Max?: string | undefined; Min?: string | undefined; MinorGrid?: boolean | undefined; MinorGridStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorTicks?: "None" | "Inside" | "Outside" | "Cross" | undefined; MinorTickSize?: string | undefined; MinorTickStyle?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; MinorUnit?: string | undefined; Origin?: string | undefined; OverlappingLabels?: "Auto" | "Show" | undefined; Plots?: string[] | undefined; Position?: "None" | "Near" | "Far" | undefined; Reversed?: boolean | undefined; Scale?: "Linear" | "Logarithmic" | "Ordinal" | "Percentage" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; TextStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Title?: string | undefined; TitleStyle?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; MaxHeight?: number | undefined; MaxWidth?: number | undefined; Width?: number | null | undefined; Height?: number | null | undefined; LabelRowCount?: number | undefined; } | null)[] | undefined; Legends?: ({ MaxHeight?: number | undefined; MaxWidth?: number | undefined; Title?: string | undefined; LegendType?: "Color" | "Shape" | "Size" | undefined; IconColor?: string | undefined; RangeOptions?: { Title?: string | undefined; To?: number | undefined; }[] | undefined; Hidden?: boolean | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; Position?: "Left" | "Right" | "Top" | "Bottom" | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; TextStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; TitleStyle?: { Color?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; } | undefined; Type?: undefined; } | null)[] | undefined; Style?: { Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; } | undefined; } | undefined; NoRowsMessage?: string | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; PageName?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "image" | undefined; Value?: string | undefined; Style?: { PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Sizing?: "Clip" | "Fit" | "AutoSize" | "FitProportional" | undefined; HorizontalAlignment?: "Center" | "Left" | "Right" | `=${string}` | undefined; VerticalAlignment?: "Top" | "Middle" | "Bottom" | `=${string}` | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "bullet" | undefined; Value?: string | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; Orientation?: "Horizontal" | "Vertical" | undefined; LabelFormat?: string | undefined; LabelFontFamily?: string | undefined; LabelFontSize?: string | undefined; LabelFontStyle?: "Italic" | "Bold" | "Underline" | "Regular" | "Strikeout" | `=${string}` | undefined; LabelFontColor?: string | undefined; ShowLabels?: boolean | undefined; TargetShape?: "Square" | "Dot" | "Line" | undefined; TargetLineColor?: string | undefined; TargetLineWidth?: string | undefined; TickMarks?: "None" | "Inside" | "Outside" | undefined; TicksLineColor?: string | undefined; TicksLineWidth?: string | undefined; ValueColor?: string | undefined; BestValue?: string | undefined; Interval?: string | undefined; Range1Boundary?: string | undefined; Range2Boundary?: string | undefined; TargetValue?: string | undefined; WorstValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "formattedtext" | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; AccessibleDescription?: string | undefined; EncodeMailMergeFields?: boolean | undefined; Html?: string | undefined; MailMergeFields?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | (((({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: undefined; Password?: boolean | undefined; Multiline?: boolean | undefined; SpellCheck?: boolean | undefined; MaxLength?: number | null | undefined; Value?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; Format?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; }) | ({ Name: string; Type?: "inputfield" | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } & { InputType?: "CheckBox" | undefined; Checked?: string | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; CheckSize?: string | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; })) & { $hiddenCheckboxProps?: undefined; $hiddenTextProps?: undefined; }) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "sparkline" | undefined; DataSetName?: string | undefined; Label?: string | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LineWidth?: string | undefined; LineColor?: string | undefined; AccessibleDescription?: string | undefined; Group?: { Name?: string | undefined; DocumentMapLabel?: string | undefined; GroupExpressions?: string[] | undefined; PageBreak?: "None" | "Start" | "End" | "StartAndEnd" | "Between" | undefined; PageBreakDisabled?: string | undefined; NewPage?: "Next" | "Odd" | "Even" | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; ParentGroup?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; DataCollectionName?: string | undefined; NewSection?: boolean | undefined; } | undefined; DataSetParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; SortExpressions?: { Value?: string | undefined; Direction?: "Ascending" | "Descending" | undefined; }[] | undefined; FillColor?: string | undefined; GradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; GradientEndColor?: string | undefined; MarkerColor?: string | undefined; MarkerVisibility?: boolean | undefined; MaximumColumnWidth?: string | undefined; RangeFillColor?: string | undefined; RangeGradientStyle?: "None" | "LeftRight" | "TopBottom" | "Center" | "DiagonalLeft" | "DiagonalRight" | "HorizontalCenter" | "VerticalCenter" | undefined; RangeGradientEndColor?: string | undefined; RangeLowerBound?: string | undefined; RangeUpperBound?: string | undefined; RangeVisibility?: boolean | undefined; SparklineType?: "Line" | "Area" | "Columns" | "Whiskers" | "StackedBar" | undefined; SeriesValue?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ((({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: undefined; Paragraphs?: { TextRuns?: ({ Type: "text"; Value?: string | undefined; Style?: { Subscript?: string | undefined; Superscript?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; StyleName?: string | undefined; ToolTip?: string | undefined; } | { Type: "image"; Value?: string | undefined; Width?: string | undefined; Source?: "External" | "Embedded" | "Database" | undefined; MIMEType?: string | null | undefined; Label?: string | undefined; Action?: { Hyperlink?: string | undefined; Drillthrough?: { ReportName?: string | undefined; Parameters?: { ParameterName: string; Type?: undefined; Value?: string | undefined; Omit?: string | undefined; }[] | undefined; } | undefined; BookmarkLink?: string | undefined; ApplyParameters?: { Parameters?: { Name: string; Type?: "Set" | "Reset" | "Toggle" | undefined; Value?: string | undefined; }[] | undefined; } | undefined; } | null | undefined; ToolTip?: string | undefined; Height?: string | undefined; })[] | undefined; LeftIndent?: string | undefined; RightIndent?: string | undefined; HangingIndent?: string | undefined; StyleName?: string | undefined; Style?: { TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | undefined; Color?: string | undefined; LineSpacing?: string | undefined; BackgroundColor?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | undefined; } | undefined; ListStyle?: "None" | "Numbered" | "Bullet" | undefined; ListLevel?: number | undefined; ListItemIndex?: number | undefined; SpaceBefore?: string | undefined; SpaceAfter?: string | undefined; ListStyleType?: "None" | "Disc" | "Circle" | "Square" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | undefined; }[] | undefined; }) | ({ Name: string; Type?: "richtext" | undefined; Style?: { Color?: string | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; LineHeight?: string | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; Label?: string | undefined; ToolTip?: string | undefined; CanGrow?: boolean | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; KeepTogether?: boolean | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; } & { MarkupType?: "HTML" | undefined; Value?: string | undefined; })) & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "partitem" | undefined; Properties?: { Name: string; Value?: string | undefined; }[] | undefined; Label?: string | undefined; ToolTip?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ReportPart?: string | undefined; Library?: string | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ Name: string; Type?: "contentplaceholder" | undefined; Text?: string | undefined; ZIndex?: number | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; ConsumeWhiteSpace?: boolean | undefined; ReportItems?: ({ Type: string; } & { Name?: string | undefined; ZIndex?: number | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; ToolTip?: string | undefined; Bookmark?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Label?: string | undefined; LayerName?: string | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; })[] | undefined; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }) | ({ [x: string]: any; Name: string; } & { Left?: string | undefined; Top?: string | undefined; Width?: string | undefined; Height?: string | undefined; }))[] | undefined; Style?: { BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; } | undefined; } | undefined; Name?: string | undefined; DisplayName?: string | undefined; Label?: string | undefined; Width?: string | undefined; DataElementName?: string | undefined; DataElementOutput?: "Auto" | "Output" | "NoOutput" | "ContentsOnly" | undefined; Visibility?: { Hidden?: string | undefined; ToggleItem?: string | undefined; } | undefined; Type?: "Continuous" | undefined; }[] | undefined; Page?: { PageWidth?: string | undefined; PageHeight?: string | undefined; RightMargin?: string | undefined; LeftMargin?: string | undefined; TopMargin?: string | undefined; BottomMargin?: string | undefined; Columns?: number | undefined; ColumnSpacing?: string | undefined; PaperOrientation?: "Portrait" | "Landscape" | undefined; } | undefined; DataSources?: { Name: string; $id?: string | undefined; Transaction?: boolean | undefined; DataSourceReference?: string | undefined; ConnectionProperties?: { DataProvider: string; Prompt?: string | undefined; ConnectString?: string | undefined; IntegratedSecurity?: boolean | undefined; } | undefined; }[] | undefined; ReportParts?: { Name: string; Type?: undefined; Properties?: { Name: string; Type?: undefined; DefaultValue?: string | undefined; Category?: string | undefined; DisplayName?: string | undefined; Description?: string | undefined; PropertyType?: "string" | "boolean" | "length" | "borderStyle" | "color" | "float" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "textDecoration" | "integer" | "lineWidth" | "lineStyle" | undefined; }[] | undefined; DisplayName?: string | undefined; Description?: string | undefined; ReportItemName?: string | undefined; SizeMode?: "Grow" | "Fit" | undefined; }[] | undefined; TransformationInfo?: { Name: string; SourceType: string; ResultType: string; Errors?: { Message: string; ErrorType: string; }[] | undefined; }[] | undefined; Themes?: string[] | undefined; Name?: string | undefined; Description?: string | undefined; Author?: string | undefined; Width?: string | undefined; Language?: string | undefined; ConsumeContainerWhitespace?: boolean | undefined; DataElementName?: string | undefined; DataElementStyle?: "Auto" | "AttributeNormal" | "ElementNormal" | undefined; DocumentMap?: { Source?: "None" | "Labels" | "All" | "Headings" | undefined; NumberingStyle?: "None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian" | undefined; Levels?: ("None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian" | null)[] | undefined; } | undefined; ReportParameters?: { Name: string; DataType: "Date" | "DateTime" | "String" | "Boolean" | "Integer" | "Float"; Type?: undefined; Hidden?: boolean | undefined; AllowBlank?: boolean | undefined; DefaultValue?: { Values?: string[] | undefined; DataSetReference?: { DataSetName: string; ValueField: string; LabelField?: string | undefined; } | undefined; } | undefined; Multiline?: boolean | undefined; MultiValue?: boolean | undefined; Nullable?: boolean | undefined; Prompt?: string | undefined; SelectAllValue?: string | undefined; UsedInQuery?: "Auto" | "False" | "True" | undefined; ValidValues?: { ParameterValues?: { Value?: string | undefined; Label?: string | undefined; }[] | undefined; DataSetReference?: { DataSetName: string; ValueField: string; LabelField?: string | undefined; } | undefined; OrderBy?: { Condition?: "None" | "Value" | "Label" | undefined; Direction?: "Ascending" | "Descending" | undefined; } | undefined; } | undefined; DisplayFormat?: string | undefined; }[] | undefined; EmbeddedImages?: { Name?: string | undefined; ImageData?: string | undefined; MIMEType?: string | undefined; }[] | undefined; LayoutOrder?: "ZOrder" | "NOrder" | undefined; StartPageNumber?: number | undefined; Layers?: ({ Name: string; Type?: undefined; DesignerLock?: boolean | undefined; DesignerTransparency?: number | undefined; DesignerVisible?: boolean | undefined; DesignerDataFieldVisible?: boolean | undefined; TargetDevice?: string | undefined; } | null)[] | undefined; ThemeUri?: string | undefined; Code?: string | undefined; Classes?: { ClassName?: string | undefined; InstanceName?: string | undefined; }[] | undefined; CodeModules?: string[] | undefined; CustomProperties?: { Value: string; Name: string; }[] | undefined; LocalizationResources?: { Language?: string | undefined; Data?: { Name?: string | undefined; Value?: string | undefined; }[] | undefined; }[] | undefined; Libraries?: { Name: string; Path: string; }[] | undefined; Version?: "9.0.0" | undefined; EmbeddedStylesheets?: { Name: string; Styles: { Name: string; Properties?: { Color?: string | undefined; Border?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; TopBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; RightBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BottomBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; LeftBorder?: { Color?: string | undefined; Style?: string | undefined; Width?: string | undefined; } | undefined; BackgroundColor?: string | undefined; BackgroundImage?: { Source?: "External" | "Embedded" | "Database" | undefined; Value?: string | undefined; MIMEType?: string | undefined; BackgroundRepeat?: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}` | undefined; } | undefined; FontStyle?: "Default" | "Normal" | "Italic" | `=${string}` | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}` | undefined; LineSpacing?: string | undefined; CharacterSpacing?: string | undefined; Format?: string | undefined; TextDecoration?: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}` | undefined; TextAlign?: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}` | undefined; VerticalAlign?: "Default" | "Top" | "Middle" | "Bottom" | `=${string}` | undefined; PaddingLeft?: string | undefined; PaddingRight?: string | undefined; PaddingTop?: string | undefined; PaddingBottom?: string | undefined; Direction?: "Default" | "LTR" | "RTL" | `=${string}` | undefined; Language?: string | undefined; Calendar?: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}` | undefined; NumeralLanguage?: string | undefined; NumeralVariant?: string | undefined; UnicodeBiDi?: "Normal" | "Embed" | "BidiOverride" | `=${string}` | undefined; UprightInVerticalText?: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}` | undefined; TextIndent?: string | undefined; LeadingChar?: string | undefined; MaxLevel?: string | undefined; HeadingLevel?: string | undefined; ShrinkToFit?: string | undefined; TextJustify?: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}` | undefined; Angle?: string | undefined; MinCondenseRate?: string | undefined; DisplayFillCharacters?: string | undefined; DisplayPageNumber?: string | undefined; } | undefined; Parent?: string | undefined; }[]; }[] | undefined; Stylesheet?: { Source?: "Embedded" | "Shared" | undefined; Value?: string | undefined; } | undefined; } & { DataSets?: { Name: string; Fields?: { Name: string; Value?: string | undefined; DataField?: string | undefined; }[] | undefined; Query?: { DataSourceName: string; CommandType?: "Text" | "StoredProcedure" | "TableDirect" | undefined; CommandText?: string | null | undefined; QueryParameters?: { [x: string]: any; Value: string; Name: string; }[] | undefined; Timeout?: number | undefined; } | undefined; Filters?: { FilterExpression: string; Operator: "Between" | "Equal" | "Like" | "NotEqual" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "TopN" | "BottomN" | "TopPercent" | "BottomPercent" | "In"; FilterValues: string[]; }[] | undefined; CaseSensitivity?: "Auto" | "False" | "True" | undefined; Collation?: string | undefined; KanatypeSensitivity?: "Auto" | "False" | "True" | undefined; AccentSensitivity?: "Auto" | "False" | "True" | undefined; WidthSensitivity?: "Auto" | "False" | "True" | undefined; }[] | undefined; }, { Language: string; CustomProperties: { Name: string; Value: string | number | null; }[]; Name: string; Type: "dashboard"; DataElementStyle: "Auto" | "AttributeNormal" | "ElementNormal"; DataElementName: string; Width: string; Page: { $autoPageHeight: boolean; PageWidth: string; PageHeight: string; RightMargin: string; LeftMargin: string; TopMargin: string; BottomMargin: string; Columns: number; ColumnSpacing: string; PaperOrientation: "Portrait" | "Landscape"; }; DocumentMap: { Source: "None" | "Labels" | "All" | "Headings"; NumberingStyle: "None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian"; Levels: ("None" | "Decimal" | "DecimalLeadingZero" | "CircledNumber" | "LowerRoman" | "UpperRoman" | "LowerLatin" | "UpperLatin" | "LowerGreek" | "UpperGreek" | "Katakana" | "KatakanaBrackets" | "KatakanaIrohaBrackets" | "KatakanaIroha" | "KatakanaLower" | "KatakanaIrohaLower" | "LowerArmenian" | "UpperArmenian" | "Georgian")[]; }; ReportParameters: { Type: "reportparameter"; AllowBlank: boolean; DataType: "Date" | "DateTime" | "String" | "Boolean" | "Integer" | "Float"; DefaultValue: { Values: Expr$1[]; DataSetReference: { DataSetName: string; ValueField: string; LabelField: string; }; }; Hidden: boolean; Multiline: boolean; MultiValue: boolean; Name: string; Nullable: boolean; Prompt: string; SelectAllValue: Expr$1; UsedInQuery: "Auto" | "False" | "True"; ValidValues: { ParameterValues: { Value: Expr$1 | undefined; Label: Expr$1 | undefined; }[]; DataSetReference: { DataSetName: string; ValueField: string; LabelField: string; }; OrderBy: { Condition: "None" | "Value" | "Label"; Direction: "Ascending" | "Descending"; }; }; DisplayFormat: string; }[]; DataSources: ({ Name: string; Transaction: boolean; DataSourceReference: string; ConnectionProperties: { DataProvider: string; ConnectString: string; IntegratedSecurity: boolean; Prompt: string; }; } & { $id: string | undefined; } & { $dataProvider: string; })[]; DataSets: { Fields: ({ Name: string; DataField: string; Value: Expr$1; } & { DataType: string; Aggregate: string; Format?: string | undefined; })[]; $calculatedFields: ({ Name: string; DataField: string; Value: Expr$1; } & { DataType: string; Aggregate: string; Format?: string | undefined; })[]; Collation: string; Name: string; Query: { DataSourceName: string; CommandType: "Text" | "StoredProcedure" | "TableDirect"; CommandText: string; QueryParameters: ({ Name: string; Value: Expr$1; } & { $legacy?: any; })[]; Timeout: number; }; CaseSensitivity: "Auto" | "False" | "True"; KanatypeSensitivity: "Auto" | "False" | "True"; AccentSensitivity: "Auto" | "False" | "True"; WidthSensitivity: "Auto" | "False" | "True"; $queryFilter: any; $parentReference: string | null; $childrenReferences: string[]; Filters: Filters; }[]; Layers: ({ Type: "layer"; Name: string; DesignerLock: boolean; DesignerTransparency: number; DesignerVisible: boolean; DesignerDataFieldVisible: boolean; TargetDevice: string; } & Selectable$1)[]; Libraries: { Name: string; Path: string; }[]; Stylesheet: { Source: "Embedded" | "Shared"; Value: string; }; Description: string; Version: string | undefined; Author: string; Themes: string[]; LayoutOrder: "ZOrder" | "NOrder"; ConsumeContainerWhitespace: boolean; EmbeddedImages: { Name: string; ImageData: string; MIMEType: string; }[]; StartPageNumber: number; ThemeUri: string; Code: string; Classes: { ClassName: string; InstanceName: string; }[]; CodeModules: string[]; LocalizationResources: { Language: string; Data: { Name: string; Value: string; }[]; }[]; ReportParts: { SizeMode: any; Name: string; Type: "reportpart"; DisplayName: string; Description: string; ReportItemName: string; Properties: { Name: string; Type: "reportpartproperty"; DisplayName: string; Description: string; Category: string; DefaultValue: Expr$1; PropertyType: "string" | "boolean" | "length" | "borderStyle" | "color" | "float" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "textDecoration" | "integer" | "lineWidth" | "lineStyle" | "String"; }[]; }[]; EmbeddedStylesheets: { Name: string; Styles: { Name: string; Parent: string; Properties: WithStatus<{ Color: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; LineSpacing: string; CharacterSpacing: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Direction: "Default" | "LTR" | "RTL" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; TextIndent: string; LeadingChar: string; MaxLevel: Expr$1; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; DisplayFillCharacters: Expr$1; DisplayPageNumber: Expr$1; }>; }[]; }[]; $selected: string; $primary: boolean; TransformationInfo: { Name: string; SourceType: string; ResultType: string; Errors: { ErrorType: string; Message: string; }[]; }[]; $activeSectionIndex: number; ReportSections: ((({ Type: "dashboardsection"; PageHeader: { $dashboard: boolean; $place: { Height: string; }; $width: string; $height: string; Type: "pagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PrintOnFirstPage: boolean; PrintOnLastPage: boolean; Name: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; } | null; PageFooter: { $dashboard: boolean; $place: { Height: string; }; $width: string; $height: string; Type: "pagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PrintOnFirstPage: boolean; PrintOnLastPage: boolean; Name: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; } | null; Page: { $autoPageHeight: boolean; PageWidth: string; PageHeight: string; RightMargin: string; LeftMargin: string; TopMargin: string; BottomMargin: string; Columns: number; ColumnSpacing: string; PaperOrientation: "Portrait" | "Landscape"; }; Body: { $dashboard: boolean; $place: { Height: string; }; $width: string; $height: string; Type: "section"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }; Name: string; DisplayName: string | undefined; Label: string; Width: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Visibility: { Hidden: Expr$1; ToggleItem: string; }; } | { $active: boolean; Type: "dashboardsection"; PageHeader: { $dashboard: boolean; $place: { Height: string; }; $width: string; $height: string; Type: "pagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PrintOnFirstPage: boolean; PrintOnLastPage: boolean; Name: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; } | null; PageFooter: { $dashboard: boolean; $place: { Height: string; }; $width: string; $height: string; Type: "pagesection"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; PrintOnFirstPage: boolean; PrintOnLastPage: boolean; Name: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; } | null; Page: { $autoPageHeight: boolean; PageWidth: string; PageHeight: string; RightMargin: string; LeftMargin: string; TopMargin: string; BottomMargin: string; Columns: number; ColumnSpacing: string; PaperOrientation: "Portrait" | "Landscape"; }; Body: { $dashboard: boolean; $place: { Height: string; }; $width: string; $height: string; Type: "section"; ReportItems: ReportItemBase[]; Style: { BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; }; Name: string; $selected?: "leaf" | "partial" | null | undefined; $primary?: boolean | null | undefined; }; Name: string; DisplayName: string | undefined; Label: string; Width: string; DataElementName: string; DataElementOutput: "Auto" | "Output" | "NoOutput" | "ContentsOnly"; Visibility: { Hidden: Expr$1; ToggleItem: string; }; }) & Selectable$1) & Selectable$1 & { $active?: boolean | undefined; })[]; $paramsView: ViewEditor | null; $conversionInfo: string[] | null; $index: ReportModelIndex; $masterReportContent: null; $masterReport: null; $currentLayerName: string; $activeStylesheet: { Name: string; Styles: { Name: string; Parent: string; Properties: WithStatus<{ Color: string; Border: { Color: string; Style: string; Width: string; }; TopBorder: { Color: string; Style: string; Width: string; }; RightBorder: { Color: string; Style: string; Width: string; }; BottomBorder: { Color: string; Style: string; Width: string; }; LeftBorder: { Color: string; Style: string; Width: string; }; BackgroundColor: string; BackgroundImage: { Source: "External" | "Embedded" | "Database"; Value: string; MIMEType: string; BackgroundRepeat: "Repeat" | "NoRepeat" | "RepeatX" | "RepeatY" | `=${string}`; }; FontStyle: "Default" | "Normal" | "Italic" | `=${string}`; FontFamily: string; FontSize: string; FontWeight: "Default" | "Normal" | "Lighter" | "Thin" | "ExtraLight" | "Light" | "Medium" | "SemiBold" | "Bold" | "ExtraBold" | "Heavy" | "Bolder" | `=${string}`; LineSpacing: string; CharacterSpacing: string; Format: string; TextDecoration: "Default" | "None" | "Underline" | "DoubleUnderline" | "Overline" | "LineThrough" | `=${string}`; TextAlign: "Center" | "General" | "Left" | "Right" | "Justify" | `=${string}`; VerticalAlign: "Default" | "Top" | "Middle" | "Bottom" | `=${string}`; PaddingLeft: string; PaddingRight: string; PaddingTop: string; PaddingBottom: string; Direction: "Default" | "LTR" | "RTL" | `=${string}`; Language: string; Calendar: "Default" | "Gregorian" | "GregorianArabic" | "GregorianMiddleEastFrench" | "GregorianTransliteratedEnglish" | "GregorianTransliteratedFrench" | "GregorianUSEnglish" | "Hebrew" | "Hijri" | "Japanese" | "Korean" | "Taiwan" | "ThaiBuddhist" | `=${string}`; NumeralLanguage: string; NumeralVariant: Expr$1; UnicodeBiDi: "Normal" | "Embed" | "BidiOverride" | `=${string}`; UprightInVerticalText: "None" | "Digits" | "DigitsAndLatinLetters" | `=${string}`; TextIndent: string; LeadingChar: string; MaxLevel: Expr$1; HeadingLevel: Expr$1; ShrinkToFit: Expr$1; TextJustify: "Auto" | "Distribute" | "DistributeAllLines" | `=${string}`; Angle: Expr$1; MinCondenseRate: Expr$1; DisplayFillCharacters: Expr$1; DisplayPageNumber: Expr$1; }>; }[]; } | null; $displayType?: "Page" | "Galley" | undefined; $sizeType?: "Default" | "FitToPage" | "FitToWidth" | undefined; $viewerType?: "Dashboard" | undefined; $collapseWhiteSpace?: boolean | undefined; } & Selectable$1>; type RdlReport = TypeOf$2; type RdlFplReport = ExpandRecursively; type RdlMultiReport = ExpandRecursively; type RdlDashboard = TypeOf$2; type RdlAnyReport = RdlFplReport | RdlMultiReport | RdlDashboard; type RdlDataSet = TypeOf$2; type RdlDataSource = TypeOf$2; type RdlQueryParameter = RdlDataSet['Query']['QueryParameters'][number]; type RdlReportParameter = RdlReport['ReportParameters'][number]; type RdlStylesheet = RdlReport['EmbeddedStylesheets'][number]; type RdlReportStylesheet = RdlReport['Stylesheet']; type RdlCplReportItem = TypeOf$2; type RdlFplReportItem = TypeOf$2; type RdlFplTablix = RdlFplReportItem & { Type: 'fixedpagetablix'; }; type RdlFplDvChart = RdlFplReportItem & { Type: 'fixedpagedvchart'; }; type RdlTextBox = RdlCplReportItem & { Type: 'textbox'; }; type RdlList = RdlCplReportItem & { Type: 'list'; }; type RdlTablix = RdlCplReportItem & { Type: 'tablix'; }; type RdlRectangle = RdlCplReportItem & { Type: 'rectangle'; }; type RdlTableOfContents = RdlCplReportItem & { Type: 'tableofcontents'; }; type RdlDvChart = RdlCplReportItem & { Type: 'dvchart'; }; type RdlBullet = RdlCplReportItem & { Type: 'bullet'; }; type RdlSparkline = RdlCplReportItem & { Type: 'sparkline'; }; type RdlReportItem = RdlCplReportItem | RdlFplReportItem; type TablixMember = RdlTablix['RowHierarchy']['Members'][number]; type DynamicTablixMember = TablixMember & { Type: 'dynamictablixmember'; }; type RdlAnyDVChart = RdlDvChart | RdlFplDvChart; type DVPlot = Expand; type DVPlotChartType = DVPlot['PlotChartType']; type RdlReportPart = RdlMultiReport['ReportParts'][number]; type RdlLibrary = RdlMultiReport['Libraries'][number]; type CoreFont = { label: string; value: string; }; type CoreFontHeader = { header: string; }; type DesignerThemeExtraProps = { rulersBackground?: Color; rulersSpanBackgroundPrimary?: Color; rulersSpanBackgroundSecondary?: Color; isDark?: boolean; }; type DesignerTheme = Omit & DesignerThemeExtraProps; type CoreUiBuiltInThemeName = keyof typeof coreUIThemes; type DesignerBuiltInThemeName = CoreUiBuiltInThemeName | 'system'; type DataSettings$1 = { dataTab: { visible: boolean; }; dataSources: { visible: boolean; canModify: boolean; shared: { enabled: boolean; }; }; dataSets: { visible: boolean; canModify: boolean; }; parameters: { visible: boolean; canModify: boolean; }; slicers: { visible: boolean; }; commonValues: { visible: boolean; }; }; type CoreSettings> = { /** * Unique identifier for the Designer instance. Required if there are multiple instances on the same page * @default 'ar-web-designer' */ instanceId: string; /** * Specifies language to use for the Designer.\ * If **language** is not specified, browser preferences are used * * **Example:** * ```javascript * designerOptions.language = 'ja'; * ``` * @default 'en' */ language: string; /** * Specifies the list of fonts displayed in **Font** property editors all over Designer.\ * Supports plain strings, label-value pairs, headers and splitters * * If not specified, the default list of fonts is used: * 'Arial', 'Arial Black', 'Comic Sans MS', 'Courier New', 'Geneva', 'Georgia', 'Helvetica', * 'Impact', 'Lucida Console', 'Meiryo', 'Meiryo UI', 'MingLiU', 'MingLiU-ExtB', 'MS Gothic', 'MS Mincho', * 'MS PGothic', 'MS PMincho', 'MS Song', 'MS UI Gothic', 'NSimSun', 'Osaka', 'PMingLiU', 'PMingLiU-ExtB', * 'SimSun', 'SimSun-ExtB', 'Song', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana', 'Yu Gothic'. * * **Example:** * ```javascript * designerOptions.fonts = [{ header: 'Questionable Choice' }, { label: 'Pretty Font', value: 'Comic Sans MS' }, { header: '' }, 'Arial', 'Courier New', 'Times New Roman']; * ``` */ fonts: (string | CoreFont | CoreFontHeader)[]; /** * Configures various theme-related settings. */ themes: { /** * The default theme to be applied. * * @default "default" */ default: string; /** * An array of available themes that can be picked by the user. * These themes can be either built-in themes or custom ones. * * @default ["default", "defaultDark", "darkOled", "highContrast", "highContrastDark"] */ list: (DesignerBuiltInThemeName | DesignerTheme)[]; /** * Controls Theme Picker behavior */ picker: { /** shows Theme Picker in UI */ enabled: boolean; }; }; /** * Specifies the list of supported date formats * https://learn.microsoft.com/en-us/dotnet/standard/base-types/custom-date-and-time-format-strings * * **Example:** * ```javascript * designerOptions.date_format = ['yyyy/MM/dd HH:mm:ss', 'yyyy/MM/dd', 'HH:mm:ss', 'aa hh:mm:ss'] * ``` */ dateFormats: string[]; /** * Specifies the list of supported image mime-types */ imageMimeTypes: string[]; /** * When **lockLayout** is enabled, it is only possible to modify properties of existing report items.\ * I.e., adding a new report item or deleting of an existing one is not possible as well as other operations that modify report layout structure.\ * * **Example:** * ```javascript * designerOptions.lockLayout = true; * ``` * @default false */ lockLayout: boolean; /** * Disable usage of system clipboard. Copy-paste between designer instances will work only in the same browser in the same domain * @default false */ disableSystemClipboard: boolean; /** * Return filtered array of descriptors in order in which descriptors should be rearranged */ filterProperties?: (descriptors: PropertyDescriptor[], item: Record, platform: 'rdlx' | 'rpx') => PropertyDescriptor[]; data: DataSettings$1; userPreferences: { /** * Specifies the default measurement units * * **Example:** * ```javascript * designerOptions.units = 'cm'; * ``` * @default 'in' */ units: 'in' | 'cm'; sidebar: { propertiesMode: Exclude; propertiesSort: 'categorized' | 'alphabetical'; width: number; /** Current "expanded" states for categories. Stored as JSON string */ expandedCategoriesStates: string; /** Current "expanded" states for expandable editors. Stored as JSON string */ expandedEditorsStates: string; }; surface: { gridSize: string; showGrid: boolean; snapToGrid: boolean; snapToLines: boolean; zoomFactor: number; }; rulers: { show: boolean; snapStep: { in: number; cm: number; }; }; /** * The preferred theme chosen by the user. * * @optional */ theme?: string; }; } & T; type ContextActionMeta> = { type: string; } & T; type ContextActionWithLocation = { type: string; location?: 'toolbar' | 'contextmenu'; }; type ContextActionBase = ContextActionWithLocation & { icon?: SVGIcon; key: string; disabled?: boolean; meta?: ContextActionMeta; }; type ContextActionButton = ContextActionBase & { type: 'button'; action: AnyAction; textKey?: string; }; type ContextActionDialog = ContextActionBase & { type: 'dialog'; dialogName: string; dialogProps: any; }; type ContextActionSeparator = ContextActionWithLocation & { type: 'separator'; key: string; }; type DropdownContextActions = ContextActionButton | ContextActionSeparator | ContextActionDialog; type ContextActionDropdown = ContextActionBase & { type: 'dropdown'; actions: DropdownContextActions[]; }; type GroupContextActions = DropdownContextActions | ContextActionDropdown; type ContextActionGroup = ContextActionBase & { type: 'group'; actions: T[]; }; type ContextAction = ContextActionGroup | GroupContextActions; type CoreAppBarItem = 'Home' | 'File' | 'Insert'; type CoreSidebarTab = 'Properties'; type CoreDocumentState = { /** Opened document type */ type?: TDocType; /** Content of the opened document */ content?: TDocContent; }; type MenuState = { pinned: boolean; status: MenuStatus; panelId?: string | null; }; type CoreState = { /** Core instance id */ id: string; /** Active workspace id */ workspaceId: string; /** Indicates that opened document has unsaved changes */ hasUnsavedChanges: boolean; /** Opened document name */ documentName?: string; /** Active AppBar item id */ appBarItemId: CoreAppBarItem | string; /** Menu component state */ menu: { editor: MenuState; workspaces: Record; }; /** Currently applied Designer theme */ theme: DesignerTheme; /** Active Sidebar tab id */ sidebarTabId: CoreSidebarTab | string; /** Contains data about selected items. Required for PropertyGrid component */ /** A list of available context actions specific for current selection */ contextActions: ContextAction[]; /** Opened document info */ document: StateWithHistory>; }; type DialogsState = Record; type ResourceBundle = { lng: string; ns: string; resources: Record; }; type ParsedRdlReportPart = RdlReportPart & { width?: string; height?: string; dataSets: RdlDataSet[]; dataSources: RdlDataSource[]; item: RdlReportItem; }; type RdlLibraryBase = RdlLibrary & { DisplayName: string; }; type AvailableRdlLibrary = RdlLibraryBase & { status: 'available'; }; type LoadingRdlLibrary = RdlLibraryBase & { status: 'loading'; }; type LoadedRdlLibrary = RdlLibraryBase & { status: 'loaded'; reportParts: ParsedRdlReportPart[]; EmbeddedImages: RdlMultiReport['EmbeddedImages']; }; type InvalidRdlLibrary = RdlLibraryBase & { status: 'error'; errorText: string; }; type AnyRdlLibrary = AvailableRdlLibrary | LoadingRdlLibrary | LoadedRdlLibrary | InvalidRdlLibrary; type ObjectProperties = { descriptors: T[][]; objectValue: any[]; defaultValue: any[]; objectPath: string[]; }; type Units = 'cm' | 'in'; /** Utility type to indicate twips value */ type Twips = number; type LengthSourceObject = Record; type LengthSource = string | LengthSourceObject; interface LengthLike { value: number; units: string; } declare class Length implements LengthLike { value: number; units: string; /** * Creates length object from specified source. * If source cannot be interpreted as a valid length creates an empty object. * @param {string|Object|Length} source string representation of length or length itself. */ constructor(value: number, units: string); get css(): string; static toPixels(value: any): number; static fromPixels(value: any, units?: string): Length; /** * Converts twips to the specified value */ static fromTwips(value: Twips, units?: string): Length; /** * Gets the length value in rounded integer twip units. * * @param {any} length * @returns */ get toTwips(): number; /** * Gets the length value in precise float twip units. * * @param {any} length * @returns */ get toPreciseTwips(): number; /** * Returns new length which is sum of original and specified lengths. * If specified object cannot be interpreted as a valid length function returns null. * @param {Object} length length representation * @returns {Length} Length */ add(length: any): Length; /** * Returns new length which is subtraction of original and specified lengths. * If specified object cannot be interpreted as a valid length function returns null. * @param {Object} length length representation * @returns {Length} Length */ subtract(length: any): Length; /** * Returns new length which is the quotient of original and specified number. * If specified object cannot be interpreted as a valid length function returns null. * @param {number} num divisor * @returns {Length} Length */ divideByNum(num: any): Length; negative(): Length; abs(): Length; /** * Returns ratio of of original and specified lengths. * If specified object cannot be interpreted as a valid length function returns null. * @param {Object} length length representation * @returns {number} Ratio */ divide(divisor: any): number; /** * Multiplies original length by specified number. * If specified multiplier cannot be interpreted as a number function returns null. * @param {number} multiplier Multiplier * @returns {Length} Multiplication result */ multiply(multiplier: any): Length; /** * Compares original length with specified one. * If specified length cannot be interpreted as a length function returns null. * @param {Length} comparand Comparand * @returns {boolean} true if lengths are equal, false otherwise */ equal(comparand: LengthLike): boolean; absEqual(comparand: any): boolean; greaterThan(comparand: any): boolean; greaterThanOrEqual(comparand: any): boolean; lowerThan(comparand: any): boolean; absLowerThan(comparand: any): boolean; absLowerThanOrEqual(comparand: any): boolean; lowerThanOrEqual(comparand: any): boolean; round(fractionDigits: number): Length; normalize(): Length; /** * Checks that two values are close enough * @param {Length} comparand value to compare with * @param {Length} delta difference * @returns true if |a - b| < delta, false otherwise */ closeTo(comparand: any, delta: any): boolean; static max(values: Array): Length; static min(values: Array): Length; static sum(lengths: Array, first?: number, count?: number | null): Length; /** Converts string or Length to a Length instance. */ static parse(value?: LengthSource): Length; /** The same as parse(), but null/undefined/empty string/etc values will be parsed as zero instead of throwing error */ static parseSafe(value?: LengthSource): Length; static isValidString(value: any, canBeNegative?: boolean): boolean; /** * Returns zero Length * @deprecated A very ugly thing. Avoid it at all costs * */ static get zero(): Length; static isZero(value: any): boolean; static isZeroLike(value: any): boolean; } type Interval = { min: number; max: number; }; type EmptyValue = 'Null' | 'Undefined' | 'EmptyString'; type NumberPropertyMeta = TooltipMeta & { numberType: 'Integer' | 'Float'; minValue?: number; maxValue?: number; step?: number; intervals?: Interval[]; excludeMin?: boolean; excludeMax?: boolean; emptyValue?: EmptyValue; valueMode?: 'string' | 'number'; }; type PercentPropertyMeta = TooltipMeta & { min?: number; max?: number; step?: number; scale?: number; emptyValue?: EmptyValue; defaultValue?: number; valueMode?: 'string' | 'number'; }; type Without = { [P in Exclude]?: never; }; type XOR = T | U extends object ? (Without & U) | (Without & T) : T | U; type LengthPropertyMeta = { unit?: string; allowEmptyString?: boolean; allowAutoValue?: boolean; } & XOR<{ minValue?: Length; }, { minValueMap?: Record; }> & XOR<{ maxValue?: Length; }, { maxValueMap?: Record; }>; type StringPropertyMeta = { emptyValue?: EmptyValue; }; type CorePropertyDescriptorBase = Omit; type NumberPropertyDescriptor = CorePropertyDescriptorBase & { type: 'number'; meta: NumberPropertyMeta; }; type PercentPropertyDescriptor = CorePropertyDescriptorBase & { type: 'percent'; meta?: PercentPropertyMeta; }; type LengthPropertyDescriptor = CorePropertyDescriptorBase & { type: 'length'; meta?: LengthPropertyMeta; }; type BooleanPropertyDescriptor = CorePropertyDescriptorBase & { type: 'boolean'; meta?: { /** * Used to distinct a *simple boolean* from **boolean-like** properties that have different state names (for example: On/Off, Enabled/Disabled, etc.) * @deprecated Use `customType` instead * */ booleanType?: string; /** * Used to localize non-standard boolean states (for example: On/Off, Enabled/Disabled, etc.) */ customType?: { /** * Localization key for the object containing values for each state: `{ textTrue: 'On', textFalse: 'Off' }` */ localizationKey?: string; /** * Text for the **true** state * Ignored if `localizationKey` is specified * */ textTrue?: string; /** * Text for the **false** state * Ignored if `localizationKey` is specified * */ textFalse?: string; }; /** * Indicates that this property has a third **unset** stage * @default false */ withUndefined?: boolean; /** * Determines the way property value is stored: as a **boolean** or as a True/False **string** * @default 'boolean' */ valueMode?: 'boolean' | 'string'; }; }; type StringPropertyDescriptor = CorePropertyDescriptorBase & { type: 'string'; meta?: StringPropertyMeta; }; type ColorPropertyDescriptor = CorePropertyDescriptorBase & { type: 'color'; meta?: { allowEmpty?: boolean; }; }; type EnumPropertyMeta = { enumKey: string; allowEmpty?: boolean; }; type EnumPropertyDescriptor = CorePropertyDescriptorBase & { type: 'enum'; meta: EnumPropertyMeta; }; type LineStylePropertyDescriptor = CorePropertyDescriptorBase & { type: 'line_style'; meta: EnumPropertyMeta; }; type ReportParameterFormatPropertyDescriptor = CorePropertyDescriptorBase & { type: 'date_format'; meta?: { allowEmpty?: boolean; }; }; type CorePropertyDescriptor = NumberPropertyDescriptor | PercentPropertyDescriptor | LengthPropertyDescriptor | BooleanPropertyDescriptor | StringPropertyDescriptor | ColorPropertyDescriptor | EnumPropertyDescriptor | LineStylePropertyDescriptor | ReportParameterFormatPropertyDescriptor; type ExtendCoreDescriptor = Omit & { type: Type; meta: T['meta'] extends never ? { disableDataFields?: boolean; parentLabel?: string; } : T['meta'] & { disableDataFields?: boolean; parentLabel?: string; }; }; type NumberExprPropertyDescriptor = ExtendCoreDescriptor; type PercentExprPropertyDescriptor = ExtendCoreDescriptor; type LengthExprPropertyDescriptor = ExtendCoreDescriptor; type LengthLocSizePropertyDescriptor = ExtendCoreDescriptor; type BooleanExprPropertyDescriptor = ExtendCoreDescriptor; type ColorExprPropertyDescriptor = ExtendCoreDescriptor; type EnumExprPropertyDescriptor = ExtendCoreDescriptor; type BorderStylePropertyDescriptor = ExtendCoreDescriptor; type TextDecorationPropertyDescriptor = ExtendCoreDescriptor; type StringExprPropertyMeta = { disableDataFields?: boolean; exprEditorFilter?: (key: string) => boolean; }; type StringExprPropertyDescriptor = ExtendCoreDescriptor & { meta: StringExprPropertyMeta; }; type DVPlotOverlayNameDescriptor = CorePropertyDescriptorBase & { type: 'dvchart_plot_overlay_name'; meta: { occupiedNames: string[]; }; }; type StylesPropertyDescriptor = CorePropertyDescriptorBase & { type: 'styles'; meta: { target: RdlxReportStyleTarget; }; }; type PageSizePropertyDescriptor = CorePropertyDescriptorBase & { type: 'page_size'; meta?: { compactMode: boolean; }; }; type MimeTypePropertyDescriptor = CorePropertyDescriptorBase & { type: 'mime_type'; meta?: { imageMimeTypes: string[]; }; }; type FplPageSizePropertyDescriptor = CorePropertyDescriptorBase & { type: 'fpl_page_size'; meta?: { compactMode: boolean; }; }; type MslPageSizePropertyDescriptor = CorePropertyDescriptorBase & { type: 'msl_page_size'; meta?: { compactMode: boolean; }; }; type DvChartTemplatePropertyDescriptor = CorePropertyDescriptorBase & { type: 'dvchart_template'; meta?: { target: 'ToolTip' | 'Label'; disableDataFields?: boolean; }; }; type FontSizeExprPropertyDescriptor = CorePropertyDescriptorBase & { type: 'font_size_expr'; meta: { enumKey: string; unit: string; }; }; type LanguagePropertyDescriptor = CorePropertyDescriptorBase & { type: 'language'; meta?: { reportLanguages: RdlxSettings['reportLanguages']; }; }; type ReportPartPropertyDescriptor = CorePropertyDescriptorBase & { type: 'report_part_property'; meta: { property: RdlReportPart['Properties'][number]; }; }; type DateTimeDescriptor = CorePropertyDescriptorBase & { type: 'date_time'; meta: { minDate?: Date; maxDate?: Date; format?: string; locale?: string; }; }; type StylesheetPropertyDescriptor = CorePropertyDescriptorBase & { type: 'stylesheet_expr'; meta: { property: RdlReportStylesheet; }; }; type StyleNamePropertyDescriptor = CorePropertyDescriptorBase & { type: 'style_name'; meta?: { styles?: string[]; }; }; type EnumLikePropertyTypes = 'barcode_ecc200_symbol_size' | 'barcode_ecc200_encoding_mode' | 'barcode_ecc000_140_symbol_size' | 'barcode_gs1_composite_type' | 'barcode_maxicode_mode' | 'barcode_micro_pdf417_compaction_mode' | 'barcode_micro_pdf417_version' | 'barcode_micro_qrcode_version' | 'barcode_micro_qrcode_error_level' | 'barcode_micro_qrcode_mask' | 'barcode_pdf417_error_correction_level' | 'barcode_pdf417_type' | 'barcode_qrcode_error_level' | 'barcode_qrcode_mask' | 'barcode_qrcode_model' | 'barcode_encoding' | 'dvchart_plot_overlay_type' | 'dvchart_scale' | 'font_family' | 'line_style' | 'mime_type' | 'page_orientation' | 'tablix_member_new_page'; type NamePropertyTypes = 'dataset_name' | 'dvchart_plot_name' | 'name_group' | 'name_dataset' | 'name_item' | 'overflow_name' | 'layer_name' | 'reportparameter_name' | 'style_item_name'; type OtherPropertyTypes = EnumLikePropertyTypes | NamePropertyTypes | 'action' | 'apply_parameters' | 'auto_merge_mode' | 'background_borders' | 'background_image' | 'barcode_symbology' | 'barcode_quiet_zone' | 'border' | 'corner' | 'dataset_nested_datasets_collection' | 'dataset_field_collection' | 'dataset_parameter_collection' | 'dataset_query' | 'dataset_query_parameter_collection' | 'dvchart_axis_collection' | 'dvchart_axis_plot_name_collection' | 'dvchart_axis_sizes' | 'dvchart_axis_scale' | 'dvchart_color_encoding_collection' | 'dvchart_details_encoding_collection' | 'dvchart_encoding_field_collection' | 'dvchart_encoding_field_details' | 'dvchart_legend_range_options_collection' | 'dvchart_overlay_axis_value' | 'dvchart_overlay_fields' | 'dvchart_palette' | 'dvchart_plot_collection' | 'dvchart_plot_rules_collection' | 'dvchart_plot_rule_condition' | 'dvchart_plot_template' | 'dvchart_plot_overlays_collection' | 'dvchart_plot_custom_labels' | 'dvchart_plot_pointers' | 'dvchart_plot_show_values_names_in_legend' | 'dvchart_text_encoding_collection' | 'dvchart_text_encoding_name' | 'dvchart_values_encoding_collection' | 'dvchart_value_encoding_fields_advanced' | 'dvchart_value_encoding_fields_simple' | 'dvchart_without_aggregate_field' | 'embedded_images_collection' | 'end_point' | 'field_name' | 'filter_collection' | 'filter_values_expr' | 'font' | 'font_simple' | 'format' | 'group_expr_collection' | 'group_expr_ext_collection' | 'html_expr' | 'image_data_advanced' | 'image_source' | 'inline_filters' | 'input_type' | 'layer' | 'layer_collection' | 'link_to_child' | 'level_collection' | 'report_parts_library' | 'report_part_property_type' | 'location' | 'mail_merge_fields_collection' | 'margins' | 'size' | 'padding' | 'parameter_collection' | 'partitem-size' | 'query_filters' | 'reportparameter_data' | 'reportparameter_default_value' | 'reportparameter_valid_value' | 'report_parts_collection' | 'report_part_reportitem_name' | 'report_part_properties_collection' | 'rows_columns_count' | 'simple_border' | 'slice' | 'sort_expression_expr_collection' | 'start_point' | 'subreport' | 'subreport_parameters' | 'tablix_member_type' | 'target_device' | 'themes_collection' | 'theme_uri' | 'theme_uri_legacy' | 'unpivot_data' | 'user_sort' | 'visibility' | 'name_master_report' | 'style_name'; type OtherPropertyDescriptor = CorePropertyDescriptorBase & { type: OtherPropertyTypes; meta?: Record; }; type RDLPropertyEditorMeta = { meta?: { disabled?: boolean; }; }; type RDLPropertyDescriptor = (CorePropertyDescriptor | BooleanExprPropertyDescriptor | BorderStylePropertyDescriptor | ColorExprPropertyDescriptor | DvChartTemplatePropertyDescriptor | DVPlotOverlayNameDescriptor | EnumExprPropertyDescriptor | FontSizeExprPropertyDescriptor | LengthExprPropertyDescriptor | LengthLocSizePropertyDescriptor | MimeTypePropertyDescriptor | LanguagePropertyDescriptor | NumberExprPropertyDescriptor | PercentExprPropertyDescriptor | ReportPartPropertyDescriptor | PageSizePropertyDescriptor | FplPageSizePropertyDescriptor | MslPageSizePropertyDescriptor | StringExprPropertyDescriptor | StylesPropertyDescriptor | TextDecorationPropertyDescriptor | DateTimeDescriptor | StylesheetPropertyDescriptor | StyleNamePropertyDescriptor | OtherPropertyDescriptor) & RDLPropertyEditorMeta; type FontStyle = TypeOf$2; type FontWeight = TypeOf$2; type ThemeFont = { /** Font family */ Family: string | null; /** Font style */ Style: FontStyle | null; /** Font size */ Size: string | null; /** Font weight */ Weight: FontWeight | null; }; type ThemeImage = { /** Image name */ Name: string; /** Image MIME type */ MIMEType: string; /** Base64 image data */ ImageData: string; }; type ThemeConstant = { /** Constant key */ Key: string; /** Constant value */ Value: string; }; type Theme = { $isFallback?: boolean; /** Theme colors */ Colors: { /** Dark1 theme color */ Dark1: string | null; /** Dark2 theme color */ Dark2: string | null; /** Light1 theme color */ Light1: string | null; /** Light2 theme color */ Light2: string | null; /** Accent1 theme color */ Accent1: string | null; /** Accent2 theme color */ Accent2: string | null; /** Accent3 theme color */ Accent3: string | null; /** Accent4 theme color */ Accent4: string | null; /** Accent5 theme color */ Accent5: string | null; /** Accent6 theme color */ Accent6: string | null; /** Hyperlink theme color */ Hyperlink: string | null; /** Followed hyperlink theme color */ HyperlinkFollowed: string | null; }; /** Theme fonts */ Fonts: { /** Major text font */ MajorFont: ThemeFont; /** Minor text font */ MinorFont: ThemeFont; }; /** Theme images */ Images: ThemeImage[]; /** Theme constants */ Constants: ThemeConstant[]; }; type DefaultTheme = { id: string | null; name: string; content: Record | null; }; type RdlxLinkedPropertiesPath = { value: string; title?: string; }; type RdlxObjectProperties = ObjectProperties & { linkedProperties: ObjectProperties[]; }; type RdlxPropertyGridState = RdlxObjectProperties & { path: RdlxLinkedPropertiesPath[]; }; type ReportResourceType = 'RPX' | 'MSL' | 'MSL_MASTER' | 'FPL' | 'DBL'; type ReportResource = { /** Report id */ id: string; /** Report name */ name: string; /** Report type */ type: ReportResourceType; }; type ResourceItemsCollection = { items: T[]; }; type AsyncResourceItemsCollection = ResourceItemsCollection & { loading: boolean | null; error: false | { status: string; statusText: string; }; }; type ImageResource = { /** Image id */ id: string; /** Image name */ name: string; /** Image link */ value: string; /** Image MIME type */ mimeType: string; /** Base64 image thumbnail data */ thumbnail: string; /** Master report data flag */ $isMasterReport?: boolean; }; type MasterReportResource = ReportResource & { type: 'MSL_MASTER'; }; type ThemeResource = { /** Theme id */ id: string; /** Theme name */ name: string; isDefault: boolean; /** Theme colors */ Colors: Pick; /** Theme fonts */ Fonts: { MajorFontFamily: string; MinorFontFamily: string; }; }; type SharedDataSource = { Name: string; Type: string; Description: string | null; }; type ImageResources = AsyncResourceItemsCollection; type ReportResources = AsyncResourceItemsCollection; type ThemeResources = ResourceItemsCollection; type MasterReportsResources = AsyncResourceItemsCollection; type RdlxReportStyleTarget = 'Bullet' | 'CheckBox' | 'FormattedText' | 'InputField' | 'List' | 'Container' | 'RichText' | 'Shape' | 'Sparkline' | 'Table' | 'TableOfContents' | 'Tablix' | 'TextBox' | 'ChartPalette'; type RdlxReportStyleInfo = { id: string; name: string; targetTypes: RdlxReportStyleTarget[]; isDefault: boolean; content: { $targetType: RdlxReportStyleTarget; } & Record; }; type RdlxState = { defaultTheme: DefaultTheme; groupEditorMode: 'default' | 'advanced'; reportStyles: RdlxReportStyleInfo[]; theme: Theme | null; themeId: any; propertyGrid: RdlxPropertyGridState; reportPartsLibraries: RdlxReportPartsLibrariesState; serverReports: ReportResources; sharedImages: ImageResources; sharedThemes: ThemeResources; sharedDataSources: SharedDataSource[]; sharedStylesheets: { loading: boolean; items: RdlStylesheet[]; }; masterReports: MasterReportsResources; }; type RdlxBarcodeSymbology = 'Ansi39' | 'Ansi39x' | 'Aztec' | 'BC412' | 'Codabar' | 'Code_11' | 'Code_128_A' | 'Code_128_B' | 'Code_128_C' | 'Code_128auto' | 'Code_2_of_5' | 'Code_93' | 'Code25intlv' | 'Code39' | 'Code39x' | 'Code49' | 'Code93x' | 'DataMatrix' | 'EAN_13' | 'EAN_8' | 'EAN128FNC1' | 'GS1DataMatrix' | 'GS1QRCode' | 'HIBCCode128' | 'HIBCCode39' | 'IATA_2_of_5' | 'IntelligentMail' | 'IntelligentMailPackage' | 'ISBN' | 'ISMN' | 'ISSN' | 'ITF14' | 'JapanesePostal' | 'Matrix_2_of_5' | 'MaxiCode' | 'MicroPDF417' | 'MicroQRCode' | 'MSI' | 'Pdf417' | 'Pharmacode' | 'Plessey' | 'PostNet' | 'PZN' | 'QRCode' | 'RM4SCC' | 'RSS14' | 'RSS14Stacked' | 'RSS14StackedOmnidirectional' | 'RSS14Truncated' | 'RSSExpanded' | 'RSSExpandedStacked' | 'RSSLimited' | 'SSCC_18' | 'Telepen' | 'UCCEAN128' | 'UPC_A' | 'UPC_E0' | 'UPC_E1'; type RdlxToolBoxItem = 'textbox' | 'checkbox' | 'container' | 'line' | 'shape' | 'tableofcontents' | 'image' | 'list' | 'table' | 'tablix' | 'chart' | 'bullet' | 'barcode' | 'formattedtext' | 'richtext' | 'sparkline' | 'subreport' | 'overflowplaceholder' | 'bandedlist' | 'inputfield' | 'partitem' | 'contentplaceholder'; /** These are encodings from encodings adorner panel only */ type DvChartEncodingType = 'Details' | 'Color' | 'Shape' | 'Size' | 'Text'; type ReportPartsSettings = { enabled?: boolean; /** * List of initially available for user libraries * */ libraries?: ReportPartsSettingsLibrary[]; }; type ReportPartsSettingsLibrary = { displayName?: string; name: string; path: string; }; type StylesheetSettings = { enabled: boolean; }; type RdlxReportItemsSettings = { /** Barcode features */ barcode: { /** * Limits the list of barcode symbologies available for creation.\ * By default all barcode symbologies supported by ActiveReports are available. * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.barcode.symbologies = ['Code_128_A', 'Code_128_B', 'Code_128_C']; * ``` */ symbologies?: RdlxBarcodeSymbology[]; hideUnsupportedBarcodeJSProperties?: boolean; }; /** Chart features */ chart: { /** * Specifies whether Chart Wizard is available for creating Chart * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.chart.canUseWizard = false; * ``` * @default true */ canUseWizard?: boolean; /** * Limits the list of plot chart types available for creation.\ * By default all plot chart types supported by ActiveReports are available. * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.chart.plotChartTypes = ['Column', 'Bar', 'Line']; * ``` */ plotChartTypes?: DVPlotChartType[]; /** * Excludes given encodings from encoding panel in chart adorner * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.chart.hiddenEncodings = ['Color', 'Text']; * ``` */ hiddenEncodings?: DvChartEncodingType[]; }; /** Table features */ table: { /** * Specifies whether **Table Header** needs to be auto-filled when a field is dropped to **Table Details**.\ * For example, if **ProductName** field is dropped to **Details**, **Product Name** value is set to **Header** * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.table.autoFillHeader = false; * ``` * @default true */ autoFillHeader?: boolean; /** * Specifies whether **Table Footer** needs to be auto-filled when a field is dropped to **Table Details**.\ * For example, if **ProductName** field is dropped to **Details**, **=Count([ProductName])** value is set to **Footer** * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.table.autoFillFooter = true; * ``` * @default false */ autoFillFooter?: boolean; /** * Specifies whether vertical merge of cells is enabled within **Table Header**, **Details** and **Footer** * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.table.canMergeCellsVertically = false; * ``` * @default true */ canMergeCellsVertically?: boolean; /** * Specifies whether Hide FrozenRows/FrozenColumns properties from PropertyGrid * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.table.hideFrozenRowsColumns = true; * ``` * @default false */ hideFrozenRowsColumns?: boolean; /** * Specifies whether show PreventOrphanedHeader property in PropertyGrid for table and table group * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.table.preventOrphanedHeader.enabled = true; * ``` * @default false */ preventOrphanedHeader?: { enabled: boolean; }; }; /** Tablix features */ tablix: { /** * Specifies whether Tablix Wizard should hide cross-aggregates functionality * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.tablix.crossAggregates = false; * ``` * @default true */ crossAggregates?: boolean; /** * Specifies whether **Tablix Corner Cell** needs to be auto-filled when a field is dropped to **Tablix Row Group Cell**.\ * For example, if **ProductName** field is dropped to **Row Group Cell**, **Product Name** value is set to **Corner Cell** * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.tablix.autoFillCorner = false; * ``` * @default true */ autoFillCorner?: boolean; /** * Specifies whether Tablix Wizard is available for creating/editing Tablix * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.tablix.canUseWizard = false; * ``` * @default true */ canUseWizard?: boolean; /** * Specifies whether Hide FrozenRows/FrozenColumns properties from PropertyGrid and TablixWizard * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.tablix.hideFrozenRowsColumns = true; * ``` * @default false */ hideFrozenRowsColumns?: boolean; }; /** Common features */ /** * Specifies whether ApplyParameters action is prohibited for all report items * * **Example:** * ```javascript * designerOptions.rdlx.reportItemsFeatures.prohibitApplyParametersAction = true; * ``` * @default false */ prohibitApplyParametersAction?: boolean; }; /** * This type represents RDLX Settings **after** validation. * We mark as optional only those settings which we expect to be undefined in runtime. * * For Rdlx Settings before validation use `PartialRdlxSettings` */ type RdlxSettings = { /** * Specifies the expression syntax used in Designer: * 'i11n' - interpolation syntax, 'rdl' is an "old" rdl expression syntax * * **Example:** * ```javascript * designerOptions.rdlx.expressionSyntax = 'rdl'; * ``` * @default 'i11n' */ expressionSyntax: 'i11n' | 'rdl'; /** * Filter for Expression Editor nodes */ expressionEditorNodesFilter?: (key: string) => boolean; /** * Specifies report items available and their order\ * * Default items for CPL section of MSL report: [ 'textbox', 'checkbox', 'container', 'line', 'shape', 'tableofcontents', * 'image', 'list', 'table', 'tablix', 'chart', 'bullet', 'barcode', 'formattedtext', * 'richtext', 'sparkline', 'subreport', 'bandedlist', 'inputfield' ] * * Default items for FPL report: [ 'textbox', 'checkbox', 'container', 'line', 'shape', 'tableofcontents', * 'image', 'list', 'table', 'tablix', 'chart', 'bullet', 'barcode', 'formattedtext', * 'richtext', 'sparkline', 'subreport', 'overflowplaceholder', 'bandedlist', 'inputfield' ] * * **Example:** * ```javascript * designerOptions.rdlx.toolBoxContent = { * cpl: [ 'checkbox', 'container', 'textbox' ], * fpl: [ 'image', 'list', 'table', 'tablix', 'chart', 'bullet', 'barcode', 'formattedtext' ], * }; * ``` */ toolBoxContent?: { cpl: RdlxToolBoxItem[]; fpl: RdlxToolBoxItem[]; }; initTemplates?: { imperialTemplates?: string[]; metricTemplates?: string[]; }; /** * Specifies the list of supported report languages. If not set, the default list of languages is used. * * **Example:** * ```javascript * designerOptions.rdlx.reportLanguages = [{ label: "English - USA", value: "en-US" }, { label: "Polish - Poland", value: "pl-PL" }, { label: "Chinese - Taiwan", value: "zh-TW" }]; * ``` */ reportLanguages?: { label: string; value: string; }[]; /** * Customizable report item features */ reportItemsFeatures: RdlxReportItemsSettings; reportParameters?: { hiddenProperties?: string[]; /** * Controls **Parameters View** workspace availability. Workspace is enabled by default. * @default true */ parametersView?: { enabled?: boolean; allowExpressionLabels?: boolean; allowExpressionPlaceholders?: boolean; allowExpressionMinMaxValues?: boolean; disableTreeView?: boolean; }; }; reportStyles: RdlxReportStyleInfo[]; stylesheets: Partial; msl: { enabled: boolean; }; dashboard: { enabled: boolean; }; fpl: { enabled: boolean; }; reportParts?: ReportPartsSettings; masterReports: { enabled: boolean; canConvert?: boolean; canSetOrChange?: boolean; }; reportThemes: { prohibitMultipleThemes: boolean; }; /** * Controls visibility of 'Collapse Whitespace' custom property * @default false */ reportCollapseWhitespace?: boolean; }; type PartialRdlxSettings = Omit, 'reportItemsFeatures'> & { reportItemsFeatures?: Partial; }; type RdlxReportPartsLibrariesState = { libraries: Array; panel: { expanding: Record; }; }; type RdlxReportItemStyle = { id: string; name: string; content: T; }; type CellStyleContent = Partial>; type TextBoxStyleContent = Partial>; type ContainerStyleContent = Partial>; type BulletStyleContent = Partial>; type SparklineStyleContent = Partial>; type TableStyleContent = { Header: { Rows: CellStyleContent[]; }; Details: { Rows: CellStyleContent[]; AlternatingExpression?: string; }; Footer: { Rows: CellStyleContent[]; }; TableGroups: { Styles: { Header: { Rows: CellStyleContent[]; }; Footer: { Rows: CellStyleContent[]; }; }[]; }; } & { Border: Partial; }; type TableOfContentsStyleContent = Pick & { Levels: Partial>[]; }; type ChartPaletteContent = string[]; type RdlxReportStyles = { Bullet: RdlxReportItemStyle[]; CheckBox: RdlxReportItemStyle[]; FormattedText: RdlxReportItemStyle[]; InputField: RdlxReportItemStyle[]; List: RdlxReportItemStyle[]; Container: RdlxReportItemStyle[]; /** * @obsolete Use Container instead */ Rectangle: RdlxReportItemStyle[]; RichText: RdlxReportItemStyle[]; Shape: RdlxReportItemStyle[]; Sparkline: RdlxReportItemStyle[]; Table: RdlxReportItemStyle[]; TableOfContents: RdlxReportItemStyle[]; Tablix: RdlxReportItemStyle[]; TextBox: RdlxReportItemStyle[]; ChartPalette: RdlxReportItemStyle[]; }; type RdlxFplReportDocumentType = { platform: 'rdlx'; type: 'report'; subType: 'fpl'; }; type RdlxMultiReportDocumentType = { platform: 'rdlx'; type: 'report'; subType: 'msl'; }; type RdlxMasterMultiReportDocumentType = { platform: 'rdlx'; type: 'master'; subType: 'msl'; }; type RdlxReportDocumentType = RdlxFplReportDocumentType | RdlxMultiReportDocumentType | RdlxMasterMultiReportDocumentType; type RdlxDashboardDocumentType = { platform: 'rdlx'; type: 'dashboard'; subType: 'msl'; }; type RdlxDocumentType = RdlxDashboardDocumentType | RdlxReportDocumentType; type PlotTemplateType = 'column' | 'columnStacked' | 'columnPercentStacked' | 'bar' | 'barStacked' | 'barPercentStacked' | 'line' | 'lineSmooth' | 'area' | 'areaStacked' | 'areaPercentStacked' | 'pie' | 'doughnut' | 'scatter' | 'candlestick' | 'highLowClose' | 'highLowOpenClose' | 'bubble' | 'gantt' | 'pyramid' | 'funnel' | 'polarColumn' | 'polarColumnStacked' | 'polarColumnPercentStacked' | 'polarBar' | 'polarBarStacked' | 'polarBarPercentStacked' | 'radarArea' | 'radarBubble' | 'radarScatter' | 'radarLine' | 'rangeBar' | 'rangeArea' | 'rangeColumn' | 'gauge'; type AdvancedCustomizationVisibility = { plotArea: boolean; header: boolean; axisX: boolean; axisY: boolean; legend: boolean; globalLegend: boolean; plot: boolean; footer: boolean; }; type ChartBreakDownMethod = 'Cluster' | 'Stacked' | 'PercentStacked'; type ChartWizardState = { chartModel: RdlAnyDVChart; defaultChartModel: RdlAnyDVChart; viewChartModel: RdlAnyDVChart; chartPlotTemplateType: PlotTemplateType; curStep: number; path: string; stepCompleted: boolean; advancedCustomizationVisibility: AdvancedCustomizationVisibility; chartBreakDownMethod: ChartBreakDownMethod; }; type Totals = { totalsForRowGroups: boolean; subtotalsForRowGroups: boolean; totalsForColumnGroups: boolean; subtotalsForColumnGroups: boolean; showTotalsBeforeGroup: boolean; }; type Features = { expandCollapseGroups: boolean; collapsedGroups: boolean; enableUserSort: boolean; steppedRowGroups: boolean; showValuesAsRows: boolean; }; type Field = { name: string; expr: string; }; type Sorting = { value: string; direction: 'Ascending' | 'Descending'; }; type Group = { name: string; field: Field; sorting: Sorting | null; itemName: string; itemValue: string; format: string; defaultFormat: string; }; type DisplayAsOption = 'PercentGrandTotal' | 'PercentRowGroupTotal' | 'PercentParentRowGroupTotal' | 'PercentColumnGroupTotal' | 'PercentParentColumnGroupTotal'; type Aggregate = 'Sum' | 'Count' | 'Avg' | 'Min' | 'Max'; type BodyValue = { itemName: string; field: Field; aggregate: Aggregate | null; displayAs: DisplayAsOption | null; format: string; defaultFormat: string; }; type LayoutOptions = { totals: Totals; features: Features; }; type TablixStyle = { id: string; name: string; }; type TablixInfo = { name: string; dataSetName: string; isFpl: boolean; style: TablixStyle | null; frozenRows: number; frozenColumns: number; }; type Item$Props = '$place' | '$primary' | '$selected' | '$height' | '$width' | '$style' | '$layerInfo'; type ItemSummaryProps = Omit; type ItemSummaryStyleProps = Omit; type ItemSummary = Partial<{ itemWidth: Length | null; itemHeight: Length | null; itemProps: Partial; }>; }>; type Member$Props = '$primary' | '$selected'; type MemberSummaryProps = Omit; type MemberSummaryGroupProps = Omit; type MemberSummary = ItemSummary & Partial<{ memberProps: Partial; }>; }>; type GroupEx = Group & { $summary?: MemberSummary; }; type BodyValueEx = BodyValue & { $summary?: ItemSummary; }; type Tablix$Props = '$place' | '$fixedPlace' | '$primary' | '$selected' | '$height' | '$width' | '$columns' | '$rows' | '$style' | '$layerInfo'; type TablixStructureProps = 'Corner' | 'ColumnHierarchy' | 'RowHierarchy' | 'Body'; type TablixSummaryProps = Omit; type FixedPageTablixSummaryProps = Omit; type TablixSummary = Partial<{ tablixProps: Partial; }>; type TablixInfoEx = TablixInfo & { $summary?: TablixSummary; }; /** Tablix with Matrix-like structure. */ type SimpleWizardModel = TablixInfoEx & { layoutOptions: LayoutOptions; columnGroups: GroupEx[]; rowGroups: GroupEx[]; values: BodyValueEx[]; }; type FiltersLocation = { type: 'tablix'; } | { type: 'column' | 'row'; index: number; }; type TablixWizardState = { report: RdlAnyReport | null; path: string | null; wizardModel: SimpleWizardModel | null; prevWizardModel: SimpleWizardModel | null; reportItemNames: string[]; groupNames: string[]; dirty: boolean; warning: string | null; filters: { location: FiltersLocation; } | null; parentDataSetName: string | null; }; declare type DecodeFailure$1 = { type: 'warning' | 'error'; context: string; message: string; }; declare type Result$1 = { type: 'success'; value: T; warnings?: DecodeFailure$1[]; } | { type: 'error'; reason: TErr; }; declare type Decoder$1 = { decode: (i: TI) => Result$1; encode: (i: TR) => TI; }; declare type TypeOf$1 = TD extends Decoder$1 ? TO : never; declare type DecodeFailure = { type: 'warning' | 'error'; context: string; message: string; }; declare type Result = { type: 'success'; value: T; warnings?: DecodeFailure[]; } | { type: 'error'; reason: TErr; }; declare type Decoder = { decode: (i: TI) => Result; encode: (i: TR) => TI; }; declare type InputOf = TD extends Decoder ? TI : never; declare type TypeOf = TD extends Decoder ? TO : never; declare const DataSource: { decode: (i: { ConnectionString?: string | undefined; Type?: "CSV" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; JsonPath?: string | undefined; Type?: "JSON" | undefined; DataMember?: string | undefined; } | { FileURL?: string | undefined; Pattern?: string | undefined; Type?: "XML" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "SQL" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "ODBC" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "OLEDB" | undefined; DataMember?: string | undefined; } | { Name?: string | undefined; Type?: "NonSerializable" | undefined; DataMember?: string | undefined; }) => Result<{ ConnectionString: string; Type: "CSV"; DataMember: string | undefined; } | { ConnectionString: string; JsonPath: string; Type: "JSON"; DataMember: string | undefined; } | { FileURL: string; Pattern: string; Type: "XML"; DataMember: string | undefined; } | { ConnectionString: string; CommandText: string; CommandTimeout: number; Type: "SQL"; DataMember: string | undefined; } | { ConnectionString: string; CommandText: string; CommandTimeout: number; Type: "ODBC"; DataMember: string | undefined; } | { ConnectionString: string; CommandText: string; CommandTimeout: number; Type: "OLEDB"; DataMember: string | undefined; } | { Name: string; Type: "NonSerializable"; DataMember: string | undefined; }, string>; encode: (i: { ConnectionString: string; Type: "CSV"; DataMember: string | undefined; } | { ConnectionString: string; JsonPath: string; Type: "JSON"; DataMember: string | undefined; } | { FileURL: string; Pattern: string; Type: "XML"; DataMember: string | undefined; } | { ConnectionString: string; CommandText: string; CommandTimeout: number; Type: "SQL"; DataMember: string | undefined; } | { ConnectionString: string; CommandText: string; CommandTimeout: number; Type: "ODBC"; DataMember: string | undefined; } | { ConnectionString: string; CommandText: string; CommandTimeout: number; Type: "OLEDB"; DataMember: string | undefined; } | { Name: string; Type: "NonSerializable"; DataMember: string | undefined; }) => { ConnectionString?: string | undefined; Type?: "CSV" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; JsonPath?: string | undefined; Type?: "JSON" | undefined; DataMember?: string | undefined; } | { FileURL?: string | undefined; Pattern?: string | undefined; Type?: "XML" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "SQL" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "ODBC" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "OLEDB" | undefined; DataMember?: string | undefined; } | { Name?: string | undefined; Type?: "NonSerializable" | undefined; DataMember?: string | undefined; }; }; declare const DefaultSectionDecoder: Decoder<{ Type?: "Detail" | "PageHeader" | "PageFooter" | "ReportHeader" | "ReportFooter" | "GroupHeader" | "GroupFooter" | undefined; Name?: string | undefined; Controls?: ({ Name: string; Type?: "Barcode" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: "None" | "Ansi39" | "Ansi39x" | "Code_2_of_5" | "Code25intlv" | "Code25mat" | "Matrix_2_of_5" | "Code39" | "Code39x" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_93" | "Code93x" | "MSI" | "PostNet" | "Codabar" | "EAN_8" | "EAN_13" | "UPC_A" | "UPC_E0" | "UPC_E1" | "RM4SCC" | "UCCEAN128" | "QRCode" | "Code49" | "JapanesePostal" | "Pdf417" | "EAN128FNC1" | "RSS14" | "RSS14Truncated" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "DataMatrix" | "MicroPDF417" | "MicroQRCode" | "MaxiCode" | "GS1QRCode" | "GS1DataMatrix" | "Aztec" | "IntelligentMail" | "ITF14" | "Code_11" | "SSCC_18" | "Telepen" | "Pharmacode" | "PZN" | "HIBCCode128" | "HIBCCode39" | "ISBN" | "ISSN" | "ISMN" | "IATA_2_of_5" | "BC412" | "Plessey" | "IntelligentMailPackage" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; BarWidth?: number | undefined; BarHeight?: number | undefined; SupplementBarHeight?: number | undefined; Alignment?: "Near" | "Center" | "Far" | undefined; SupplementText?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionPosition?: "None" | "Above" | "Below" | undefined; SupplementCaptionPosition?: "None" | "Above" | "Below" | undefined; Rotation?: "None" | "Rotate90Degrees" | "Rotate180Degrees" | "Rotate270Degrees" | undefined; AutoSize?: boolean | undefined; CheckSumEnabled?: boolean | undefined; QuietZoneLeft?: number | undefined; QuietZoneRight?: number | undefined; QuietZoneTop?: number | undefined; QuietZoneBottom?: number | undefined; NWRatio?: number | undefined; SupplementDataField?: string | undefined; SupplementSpacing?: number | undefined; ValueBinary?: string | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code128Options?: { Dpi?: number | undefined; BarAdjust?: number | undefined; ModuleSize?: number | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; Group?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Gs1CompositeOptions?: { Type?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; FileID?: number | undefined; SegmentCount?: number | undefined; SegmentIndex?: number | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; } | undefined; MicroQrCodeOptions?: { Encoding?: string | undefined; ErrorLevel?: "L" | "M" | "Q" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; } | undefined; Pdf417Options?: { Column?: number | undefined; Row?: number | undefined; ErrorLevel?: number | undefined; Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Encoding?: string | undefined; ErrorLevel?: "L" | "M" | "Q" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Version?: number | undefined; } | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; } | { BlackAndWhiteMode?: boolean | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; ChartBorder?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; GridLayout?: { Rows?: number | undefined; Columns?: number | undefined; } | undefined; Legends?: ({ Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Visible?: boolean | undefined; Header?: { Text?: string | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; Name?: string | undefined; } | undefined; Footer?: { Text?: string | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; Name?: string | undefined; } | undefined; LabelsFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; LegendItems?: ({ Text?: string | undefined; Style?: "None" | "Area" | "Line" | "Bar" | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Marker?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Label?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; } | undefined; LabelDistanceFactor?: number | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Size?: number | undefined; Style?: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond" | undefined; } | undefined; } | undefined)[] | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | "TopLegt" | undefined; MarginX?: number | undefined; MarginY?: number | undefined; DockArea?: string | undefined; DockInsideArea?: boolean | undefined; GridLayout?: { Rows?: number | undefined; Columns?: number | undefined; } | undefined; } | undefined)[] | undefined; ChartAreas?: ({ Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Padding?: { Top?: number | undefined; Right?: number | undefined; Bottom?: number | undefined; Left?: number | undefined; } | undefined; ZDepthRatio?: number | undefined; WallXZ?: { Width?: number | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; WallXY?: { Width?: number | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; WallYZ?: { Width?: number | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; Projection?: { ProjectionType?: "Identical" | "Orthogonal" | "Perspective" | undefined; ProjectionDX?: number | undefined; ProjectionDY?: number | undefined; HorizontalRotation?: number | undefined; VerticalRotation?: number | undefined; } | undefined; Light?: { Type?: "Ambient" | "InfiniteDirectional" | "FiniteDirectional" | undefined; Source?: { X?: number | undefined; Y?: number | undefined; Z?: number | undefined; } | undefined; DirectionalRatio?: number | undefined; } | undefined; Axes?: ({ Name?: string | undefined; Kind?: "Axis" | "CustomAxis" | undefined; TickOffset?: number | undefined; Position?: number | undefined; SmartLabels?: boolean | undefined; Arrow?: "None" | "Triangle" | "Lines" | undefined; AxisType?: "Categorical" | "Numerical" | "Logarithmic" | undefined; Min?: number | undefined; Max?: number | undefined; Title?: string | undefined; TitleFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; MajorTick?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; GridLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Step?: number | undefined; Length?: number | undefined; Visible?: boolean | undefined; } | undefined; MinorTick?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; GridLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Step?: number | undefined; Length?: number | undefined; Visible?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; LabelFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; LabelsGap?: number | undefined; LabelFormat?: string | undefined; Labels?: string[] | undefined; LabelsInside?: boolean | undefined; LabelsAtBottom?: boolean | undefined; LabelsVisible?: boolean | undefined; Scale?: number | undefined; DisplayScale?: boolean | undefined; Visible?: boolean | undefined; StaggerLabels?: boolean | undefined; } | undefined)[] | undefined; WallRanges?: ({ AdjacentAxes?: (string | undefined)[] | undefined; PrimaryAxis?: string | undefined; DrawOnTopOfGridLines?: boolean | undefined; StartValue?: number | undefined; EndValue?: number | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; } | undefined)[] | undefined; SwapAxesDirection?: boolean | undefined; SeriesLine?: { LineColor?: string | undefined; LineStyle?: "Transparent" | "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; } | undefined; } | undefined)[] | undefined; Series?: { ValueMemberX?: string | undefined; ValueMembersY?: string | undefined; Type?: "Area" | "Area3D" | "Bar2D" | "Bar3D" | "Bezier" | "BezierXY" | "BezierXY3D" | "Bezier3D" | "Bubble" | "BubbleXY" | "Candle" | "ClusteredBar" | "Doughnut" | "Doughnut3D" | "Funnel" | "Funnel3D" | "Gantt" | "Gantt3D" | "HiLo" | "HiLoOpenClose" | "HorizontalBar" | "HorizontalBar3D" | "Kagi" | "Kagi3D" | "Line" | "Line3D" | "LineXY" | "LineXY3D" | "PlotXY" | "PointAndFigure" | "Pyramid" | "Pyramid3D" | "Renko" | "Renko3D" | "Scatter" | "StackedArea" | "StackedArea3D" | "StackedBar" | "StackedBar3D" | "StackedArea100Pct" | "StackedArea3D100Pct" | "StackedBar100Pct" | "StackedBar3D100Pct" | "ThreeLineBreak" | "ThreeLineBreak3D" | null | undefined; AxisX?: string | undefined; AxisY?: string | undefined; ZOrder?: number | undefined; Visible?: boolean | undefined; ChartArea?: string | undefined; Legend?: string | undefined; Properties?: { Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Marker?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Label?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; } | undefined; LabelDistanceFactor?: number | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Size?: number | undefined; Style?: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond" | undefined; } | undefined; Tooltip?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; } | undefined; Gap?: number | undefined; ExplodeFactor?: number | undefined; OutsideLabels?: boolean | undefined; HoleSize?: number | undefined; StartAngle?: number | undefined; Clockwise?: boolean | undefined; LineBackdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; BorderLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Thickness?: number | undefined; Width?: number | undefined; LineJoin?: "Miter" | "Bevel" | "Round" | "MiterClipped" | undefined; BarType?: "Custom" | "Pyramid" | "Bar" | "Cone" | "Cylinder" | undefined; BarTopPercent?: number | undefined; VertexNumber?: number | undefined; RotationAngle?: number | undefined; PointBarDepth?: number | undefined; BodyDownswingBackdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; BodyUpswingBackdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; WickLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; BodyWidth?: number | undefined; CloseLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; OpenLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; HiLoLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; TickLen?: number | undefined; Shape?: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond" | undefined; MaxSizeFactor?: number | undefined; MinValue?: number | undefined; MaxValue?: number | undefined; PointGapPct?: number | undefined; MinPointHeight?: number | undefined; BaseStyle?: "CircularBase" | "SquareBase" | undefined; OutsideLabelsPlacement?: "Left" | "Right" | undefined; FunnelStyle?: "YIsWidth" | "YIsHeight" | undefined; NeckWidth?: number | undefined; NeckHeight?: number | undefined; CalloutLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; BoxSize?: number | undefined; ReversalAmount?: number | undefined; NewLineBreak?: number | undefined; UpswingLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; DownswingLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Tension?: number | undefined; Radius?: number | undefined; } | undefined; Points?: ({ DisplayInLegend?: boolean | undefined; IsEmpty?: boolean | undefined; LegendText?: string | undefined; XValue?: string | undefined; YValues?: number[] | undefined; } | undefined)[] | undefined; Annotations?: ({ Type?: "Bar" | undefined; AnchorPlacement?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; AnchorPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; RotationAngle?: number | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Text?: string | undefined; Name?: string | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | { Type?: "Line" | undefined; StartPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; EndPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; StartConnection?: string | undefined; EndConnection?: string | undefined; StartConnectionIndex?: number | undefined; EndConnectionIndex?: number | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined)[] | undefined; ColorPalette?: "None" | "Default" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy" | undefined; LegendItemsMode?: "Auto" | "Series" | "Points" | undefined; DisplayInLegend?: boolean | undefined; LegendText?: string | undefined; Name?: string | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; }[] | undefined; Titles?: ({ Text?: string | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; Name?: string | undefined; } | undefined)[] | undefined; AutoRefresh?: boolean | undefined; ColorPalette?: "None" | "Default" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy" | undefined; UIOptions?: "None" | "ContextCustomize" | "UseCustomTooltips" | "ForceHitTesting" | undefined; Culture?: string | undefined; Left?: number | undefined; Top?: number | undefined; Width?: number | undefined; Height?: number | undefined; Name?: string | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Type?: "Chart" | undefined; } | { Name: string; Type?: "CheckBox" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Checked?: boolean | undefined; CheckAlignment?: "TopLeft" | "TopCenter" | "TopRight" | "MiddleLeft" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; } | { Name: string; Type?: "CrossSectionLine" | undefined; Left?: number | undefined; Right?: number | undefined; Top?: number | undefined; Bottom?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; } | { Name: string; Type?: "CrossSectionBox" | undefined; Left?: number | undefined; Right?: number | undefined; Top?: number | undefined; Bottom?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; Radius?: { Default?: number | undefined; TopLeft?: number | undefined; TopRight?: number | undefined; BottomRight?: number | undefined; BottomLeft?: number | undefined; } | undefined; CloseBorder?: boolean | undefined; } | { Name: string; Type?: "Label" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Angle?: number | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; HyperLink?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; MinCondenseRate?: number | undefined; CharacterSpacing?: number | undefined; LineSpacing?: number | undefined; } | { Name: string; Type?: "Line" | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; X1?: number | undefined; X2?: number | undefined; Y1?: number | undefined; Y2?: number | undefined; AnchorBottom?: boolean | undefined; } | { Name: string; Type?: "PageBreak" | undefined; Left?: number | undefined; Top?: number | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Enabled?: boolean | undefined; } | { Name: string; Type?: "Picture" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; PictureAlignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Title?: string | undefined; LineColor?: string | undefined; LineStyle?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; HyperLink?: string | undefined; Image?: string | undefined; MimeType?: string | undefined; Description?: string | undefined; SizeMode?: "Clip" | "Stretch" | "Zoom" | undefined; } | { Name: string; Type?: "ReportInfo" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Culture?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; FormatString?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; SummaryRunning?: "None" | "All" | "Group" | undefined; SummaryGroup?: string | undefined; Calendar?: string | undefined; } | { Name: string; Type?: "RichTextBox" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; MultiLine?: boolean | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; AutoReplaceFields?: boolean | undefined; MaxLength?: number | undefined; RtfRenderingType?: "RTF" | "Metafile" | "PNG" | "TransparentPNG" | undefined; ContentType?: "Rtf" | "Html" | "Text" | undefined; Data?: string | undefined; } | { Name: string; Type?: "Shape" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; Shape?: "Rectangle" | "Ellipse" | "RoundRect" | undefined; Radius?: { Default?: number | undefined; TopLeft?: number | undefined; TopRight?: number | undefined; BottomRight?: number | undefined; BottomLeft?: number | undefined; } | undefined; BackColor2?: string | undefined; BackgroundStyle?: "Pattern" | "Solid" | "Gradient" | undefined; GradientStyle?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; BackgroundPattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; } | { Name: string; Type?: "SubReport" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; ReportName?: string | undefined; } | { Name: string; Type?: "TextBox" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Culture?: string | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; HyperLink?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; MinCondenseRate?: number | undefined; CharacterSpacing?: number | undefined; LineSpacing?: number | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; SummaryRunning?: "None" | "All" | "Group" | undefined; SummaryGroup?: string | undefined; Calendar?: string | undefined; OutputFormat?: string | undefined; CurrencyCulture?: string | undefined; SummaryType?: "None" | "GrandTotal" | "PageTotal" | "SubTotal" | "PageCount" | undefined; SummaryFunc?: "Min" | "Max" | "Sum" | "Avg" | "Count" | "Var" | "VarP" | "StdDev" | "StdDevP" | "DSum" | "DAvg" | "DCount" | "DVar" | "DVarP" | "DStdDev" | "DStdDevP" | undefined; DistinctField?: string | undefined; CountNullValues?: boolean | undefined; } | { [x: string]: any; [x: number]: any; [x: symbol]: any; Name: any; } | { Name: string; Type?: "InputFieldText" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; Alignment?: "Center" | "Left" | "Right" | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; MultiLine?: boolean | undefined; MaxLength?: unknown; OutputFormat?: string | undefined; Password?: boolean | undefined; SpellCheck?: boolean | undefined; BorderColor?: string | undefined; BorderStyle?: "None" | "Solid" | "Dashed" | "Inset" | undefined; BorderWidth?: number | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } | { Name: string; Type?: "InputFieldCheckBox" | undefined; Left?: number | undefined; Top?: number | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Checked?: boolean | undefined; BorderColor?: string | undefined; BorderStyle?: "None" | "Solid" | "Dashed" | "Inset" | undefined; BorderWidth?: number | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; CheckSize?: number | undefined; CheckStyle?: "Cross" | "Square" | "Circle" | "Diamond" | "Check" | "Star" | undefined; })[] | undefined; Height?: number | undefined; BackColor?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; KeepTogether?: boolean | undefined; NewPage?: "None" | "Before" | "After" | "BeforeAfter" | undefined; NewColumn?: "None" | "Before" | "After" | "BeforeAfter" | undefined; PrintAtBottom?: boolean | undefined; Tag?: string | undefined; UnderlayNext?: boolean | undefined; Visible?: boolean | undefined; ColumnCount?: number | undefined; ColumnDirection?: "DownAcross" | "AcrossDown" | undefined; ColumnSpacing?: number | undefined; RepeatToFill?: boolean | undefined; DataField?: string | undefined; GroupKeepTogether?: "None" | "FirstDetail" | "All" | undefined; ColKeepTogether?: boolean | undefined; RepeatStyle?: "None" | "All" | "OnPage" | "OnColumn" | "OnPageIncludeNoDetail" | undefined; ColumnLayout?: boolean | undefined; }, { Type: "Detail" | "PageHeader" | "PageFooter" | "ReportHeader" | "ReportFooter" | "GroupHeader" | "GroupFooter"; Name: string; Controls: ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: "None" | "Ansi39" | "Ansi39x" | "Code_2_of_5" | "Code25intlv" | "Code25mat" | "Matrix_2_of_5" | "Code39" | "Code39x" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_93" | "Code93x" | "MSI" | "PostNet" | "Codabar" | "EAN_8" | "EAN_13" | "UPC_A" | "UPC_E0" | "UPC_E1" | "RM4SCC" | "UCCEAN128" | "QRCode" | "Code49" | "JapanesePostal" | "Pdf417" | "EAN128FNC1" | "RSS14" | "RSS14Truncated" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "DataMatrix" | "MicroPDF417" | "MicroQRCode" | "MaxiCode" | "GS1QRCode" | "GS1DataMatrix" | "Aztec" | "IntelligentMail" | "ITF14" | "Code_11" | "SSCC_18" | "Telepen" | "Pharmacode" | "PZN" | "HIBCCode128" | "HIBCCode39" | "ISBN" | "ISSN" | "ISMN" | "IATA_2_of_5" | "BC412" | "Plessey" | "IntelligentMailPackage"; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold"; FontStyle: "Normal" | "Italic"; FontUnderline: boolean; FontLinethrough: boolean; BackColor: string; ForeColor: string; BarWidth: number; BarHeight: number; SupplementBarHeight: number; Alignment: "Near" | "Center" | "Far"; Text: string; SupplementText: string; CaptionGrouping: boolean; CaptionPosition: "None" | "Above" | "Below"; SupplementCaptionPosition: "None" | "Above" | "Below"; Rotation: "None" | "Rotate90Degrees" | "Rotate180Degrees" | "Rotate270Degrees"; AutoSize: boolean; CheckSumEnabled: boolean; QuietZoneLeft: number; QuietZoneRight: number; QuietZoneTop: number; QuietZoneBottom: number; NWRatio: number; SupplementDataField: string; SupplementSpacing: number; ValueBinary: string | undefined; AztecOptions: { ErrorCorrection: number; Layers: number; Encoding: string; }; Code128Options: { Dpi: number; BarAdjust: number; ModuleSize: number; }; Code49Options: { Grouping: boolean; Group: number; }; DataMatrixOptions: { EccMode: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140"; Ecc200SymbolSize: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48"; Ecc200EncodingMode: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256"; Ecc000_140SymbolSize: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49"; StructuredAppend: boolean; StructureNumber: number; FileIdentifier: number; Encoding: string; }; Gs1CompositeOptions: { Type: "None" | "CCA"; Value: string; }; MaxiCodeOptions: { Mode: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6"; }; MicroPdf417Options: { CompactionMode: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode"; FileID: number; SegmentCount: number; SegmentIndex: number; Version: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44"; }; MicroQrCodeOptions: { Encoding: string; ErrorLevel: "L" | "M" | "Q"; Mask: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11"; Version: "Auto" | "M1" | "M2" | "M3" | "M4"; }; Pdf417Options: { Column: number; Row: number; ErrorLevel: number; Type: "Normal" | "Simple"; }; QrCodeOptions: { Connection: boolean; ConnectionNumber: number; Encoding: string; ErrorLevel: "L" | "M" | "Q" | "H"; Mask: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111"; Model: "Model2" | "Model1"; Version: number; }; RssExpandedStacked: { RowCount: number; }; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Barcode"; } | { BlackAndWhiteMode: boolean; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; ChartBorder: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; GridLayout: { Rows: number; Columns: number; }; Legends: { Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Visible: boolean; Header: { Text: string; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Docking: "Left" | "Right" | "Top" | "Bottom"; DockArea: string; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; Name: string; }; Footer: { Text: string; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Docking: "Left" | "Right" | "Top" | "Bottom"; DockArea: string; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; Name: string; }; LabelsFont: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; LegendItems: { Text: string; Style: "None" | "Area" | "Line" | "Bar"; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Marker: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Label: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Border: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Format: string; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; }; LabelDistanceFactor: number; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Size: number; Style: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond"; }; }[]; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | "TopLegt"; MarginX: number; MarginY: number; DockArea: string; DockInsideArea: boolean; GridLayout: { Rows: number; Columns: number; }; }[]; ChartAreas: { Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Padding: { Top: number; Right: number; Bottom: number; Left: number; }; ZDepthRatio: number; WallXZ: { Width: number; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }; WallXY: { Width: number; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }; WallYZ: { Width: number; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }; Projection: { ProjectionType: "Identical" | "Orthogonal" | "Perspective"; ProjectionDX: number; ProjectionDY: number; HorizontalRotation: number; VerticalRotation: number; }; Light: { Type: "Ambient" | "InfiniteDirectional" | "FiniteDirectional"; Source: { X: number; Y: number; Z: number; }; DirectionalRatio: number; }; Axes: { Name: string; Kind: "Axis" | "CustomAxis"; TickOffset: number; Position: number; SmartLabels: boolean; Arrow: "None" | "Triangle" | "Lines"; AxisType: "Categorical" | "Numerical" | "Logarithmic"; Min: number; Max: number; Title: string; TitleFont: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; MajorTick: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; GridLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Step: number; Length: number; Visible: boolean; }; MinorTick: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; GridLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Step: number; Length: number; Visible: boolean; }; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; LabelFont: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; LabelsGap: number; LabelFormat: string; Labels: string[]; LabelsInside: boolean; LabelsAtBottom: boolean; LabelsVisible: boolean; Scale: number; DisplayScale: boolean; Visible: boolean; StaggerLabels: boolean; }[]; WallRanges: { AdjacentAxes: string[]; PrimaryAxis: string; DrawOnTopOfGridLines: boolean; StartValue: number; EndValue: number; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; }[]; SwapAxesDirection: boolean; SeriesLine: { LineColor: string; LineStyle: "Transparent" | "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; }; }[]; Series: { ValueMemberX: string; ValueMembersY: string; Type: "Area" | "Area3D" | "Bar2D" | "Bar3D" | "Bezier" | "BezierXY" | "BezierXY3D" | "Bezier3D" | "Bubble" | "BubbleXY" | "Candle" | "ClusteredBar" | "Doughnut" | "Doughnut3D" | "Funnel" | "Funnel3D" | "Gantt" | "Gantt3D" | "HiLo" | "HiLoOpenClose" | "HorizontalBar" | "HorizontalBar3D" | "Kagi" | "Kagi3D" | "Line" | "Line3D" | "LineXY" | "LineXY3D" | "PlotXY" | "PointAndFigure" | "Pyramid" | "Pyramid3D" | "Renko" | "Renko3D" | "Scatter" | "StackedArea" | "StackedArea3D" | "StackedBar" | "StackedBar3D" | "StackedArea100Pct" | "StackedArea3D100Pct" | "StackedBar100Pct" | "StackedBar3D100Pct" | "ThreeLineBreak" | "ThreeLineBreak3D" | null; AxisX: string; AxisY: string; ZOrder: number | null; Visible: boolean; ChartArea: string; Legend: string; Properties: { Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Marker: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Label: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Border: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Format: string; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; }; LabelDistanceFactor: number; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Size: number; Style: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond"; }; Tooltip: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Border: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Format: string; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; }; Gap: number; ExplodeFactor: number; OutsideLabels: boolean; HoleSize: number; StartAngle: number; Clockwise: boolean; LineBackdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; BorderLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Thickness: number; Width: number; LineJoin: "Miter" | "Bevel" | "Round" | "MiterClipped"; BarType: "Custom" | "Pyramid" | "Bar" | "Cone" | "Cylinder"; BarTopPercent: number; VertexNumber: number; RotationAngle: number; PointBarDepth: number; BodyDownswingBackdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; BodyUpswingBackdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; WickLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; BodyWidth: number; CloseLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; OpenLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; HiLoLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; TickLen: number; Shape: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond"; MaxSizeFactor: number; MinValue: number; MaxValue: number; PointGapPct: number; MinPointHeight: number; BaseStyle: "CircularBase" | "SquareBase"; OutsideLabelsPlacement: "Left" | "Right"; FunnelStyle: "YIsWidth" | "YIsHeight"; NeckWidth: number; NeckHeight: number; CalloutLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; BoxSize: number; ReversalAmount: number; NewLineBreak: number; UpswingLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; DownswingLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Tension: number; Radius: number; }; Points: { DisplayInLegend: boolean | null; IsEmpty: boolean; LegendText: string; XValue: string; YValues: number[]; }[]; Annotations: ({ Type: "Bar"; AnchorPlacement: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; AnchorPoint: { X: number; Y: number; }; Width: number; Height: number; RotationAngle: number; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Text: string; Name: string; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; } | { Type: "Line"; StartPoint: { X: number; Y: number; }; EndPoint: { X: number; Y: number; }; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; StartConnection: string; EndConnection: string; StartConnectionIndex: number; EndConnectionIndex: number; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; })[]; ColorPalette: "None" | "Default" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy"; LegendItemsMode: "Auto" | "Series" | "Points"; DisplayInLegend: boolean; LegendText: string; Name: string | null; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }[]; Titles: { Text: string; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Docking: "Left" | "Right" | "Top" | "Bottom"; DockArea: string; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; Name: string; }[]; AutoRefresh: boolean; ColorPalette: "None" | "Default" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy"; UIOptions: "None" | "ContextCustomize" | "UseCustomTooltips" | "ForceHitTesting"; Culture: string; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Chart"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; Checked: boolean; Text: string | undefined; CheckAlignment: "TopLeft" | "TopCenter" | "TopRight" | "MiddleLeft" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight"; PaddingTop: number; PaddingRight: number; PaddingBottom: number; PaddingLeft: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "CheckBox"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Left: number; Top: number; Right: number; Bottom: number; LineColor: string; LineStyle: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "CrossSectionLine"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; CloseBorder: boolean; BackColor: string; Radius: { Default: number; TopLeft: number | undefined; TopRight: number | undefined; BottomRight: number | undefined; BottomLeft: number | undefined; }; Left: number; Top: number; Right: number; Bottom: number; LineColor: string; LineStyle: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "CrossSectionBox"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; Text: string | undefined; HyperLink: string | undefined; MultiLine: boolean; RightToLeft: boolean; Angle: number; MinCondenseRate: number; CharacterSpacing: number; LineSpacing: number; PaddingTop: number; PaddingRight: number; PaddingBottom: number; PaddingLeft: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Label"; } | { X1: number; X2: number; Y1: number; Y2: number; LineColor: string; LineStyle: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; AnchorBottom: boolean; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Line"; } | { Enabled: boolean; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "PageBreak"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Image: string | undefined; MimeType: string | undefined; HyperLink: string | undefined; Title: string | undefined; Description: string | undefined; SizeMode: "Clip" | "Stretch" | "Zoom"; PictureAlignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight"; BackColor: string; LineColor: string; LineStyle: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Picture"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; FormatString: string; MultiLine: boolean; CanGrow: boolean; CanShrink: boolean; RightToLeft: boolean; SummaryRunning: "None" | "All" | "Group"; SummaryGroup: string; Culture: string; Calendar: string; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "ReportInfo"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; AutoReplaceFields: boolean; BackColor: string; CanGrow: boolean; CanShrink: boolean; MaxLength: number; MultiLine: boolean; RtfRenderingType: "RTF" | "Metafile" | "PNG" | "TransparentPNG"; ContentType: "Rtf" | "Html" | "Text"; Data: string | undefined; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "RichTextBox"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Shape: "Rectangle" | "Ellipse" | "RoundRect"; BackColor: string; BackColor2: string; BackgroundStyle: "Pattern" | "Solid" | "Gradient"; GradientStyle: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; BackgroundPattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; LineColor: string; LineStyle: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; Radius: { Default: number; TopLeft: number | undefined; TopRight: number | undefined; BottomRight: number | undefined; BottomLeft: number | undefined; }; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Shape"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; ReportName: string; CanGrow: boolean; CanShrink: boolean; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "SubReport"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; Text: string | undefined; HyperLink: string | undefined; OutputFormat: string | undefined; Culture: string | undefined; CurrencyCulture: string | undefined; Calendar: string | undefined; MultiLine: boolean; CanGrow: boolean; CanShrink: boolean; RightToLeft: boolean; SummaryType: "None" | "GrandTotal" | "PageTotal" | "SubTotal" | "PageCount"; SummaryFunc: "Min" | "Max" | "Sum" | "Avg" | "Count" | "Var" | "VarP" | "StdDev" | "StdDevP" | "DSum" | "DAvg" | "DCount" | "DVar" | "DVarP" | "DStdDev" | "DStdDevP"; SummaryRunning: "None" | "All" | "Group"; SummaryGroup: string | undefined; DistinctField: string | undefined; CountNullValues: boolean; CharacterSpacing: number; MinCondenseRate: number; LineSpacing: number; PaddingTop: number; PaddingRight: number; PaddingBottom: number; PaddingLeft: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "TextBox"; } | ({ Item: any; } & { Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Unknown"; }) | { OutputFormat: string; Text: string; MaxLength: unknown; MultiLine: boolean; Password: boolean; SpellCheck: boolean; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold"; FontStyle: "Normal" | "Italic"; Alignment: "Center" | "Left" | "Right"; FontUnderline: boolean; FontLinethrough: boolean; BackColor: string; BorderColor: string; BorderStyle: "None" | "Solid" | "Dashed" | "Inset"; BorderWidth: number; ForeColor: string; FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "InputFieldText"; } | { CheckSize: number; Checked: boolean; CheckStyle: "Cross" | "Square" | "Circle" | "Diamond" | "Check" | "Star"; BackColor: string; BorderColor: string; BorderStyle: "None" | "Solid" | "Dashed" | "Inset"; BorderWidth: number; ForeColor: string; FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "InputFieldCheckBox"; })[]; Height: number; BackColor: string; CanGrow: boolean; CanShrink: boolean; KeepTogether: boolean; NewPage: "None" | "Before" | "After" | "BeforeAfter"; NewColumn: "None" | "Before" | "After" | "BeforeAfter"; PrintAtBottom: boolean; Tag: string | undefined; UnderlayNext: boolean; Visible: boolean; ColumnCount: number; ColumnDirection: "DownAcross" | "AcrossDown"; ColumnSpacing: number; RepeatToFill: boolean; DataField: string | undefined; GroupKeepTogether: "None" | "FirstDetail" | "All"; ColKeepTogether: boolean; RepeatStyle: "None" | "All" | "OnPage" | "OnColumn" | "OnPageIncludeNoDetail"; ColumnLayout: boolean; }>; declare const Style: Decoder<{ ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined, { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }>; /** Root Style decoder */ declare const RootStyle: Decoder<{ ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; }, { ClassName: string; Parent: string | undefined; ForeColor: string; BackColor: string; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold"; FontStyle: "Normal" | "Italic"; VerticalText: boolean; DdoCharSet: string; TextAlign: "Center" | "Left" | "Right" | "Justify"; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper"; FontUnderline: boolean; FontLinethrough: boolean; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom"; WhiteSpace: "Normal" | "Pre" | "NoWrap"; WordWrap: "NoWrap" | "WordWrap" | "CharWrap"; ShrinkToFit: boolean; Kinsoku: "None" | "Auto" | "True"; }>; declare const CalculatedField$1: Decoder<{ Name?: string | undefined; FieldType?: "None" | "String" | "Date" | "Int32" | "Float" | "Double" | "Boolean" | undefined; Formula?: string | undefined; DefaultValue?: string | undefined; }, { Name: string; FieldType: "None" | "String" | "Date" | "Int32" | "Float" | "Double" | "Boolean"; Formula: string | undefined; DefaultValue: string | undefined; }>; declare const Parameter: Decoder<{ Key?: string | undefined; ParameterType?: "String" | "Date" | "Boolean" | undefined; Prompt?: string | undefined; DefaultValue?: string | undefined; PromptUser?: boolean | undefined; QueryCreated?: boolean | undefined; DisplayFormat?: string | undefined; }, { Key: string; ParameterType: "String" | "Date" | "Boolean"; Prompt: string | undefined; DefaultValue: string | undefined; PromptUser: boolean; QueryCreated: boolean; DisplayFormat: string; }>; declare const DefaultReportDecoder: Decoder<{ Version?: "1.7.66" | undefined; CompatibilityMode?: "GDI" | "CrossPlatform" | undefined; ExpressionErrorMessage?: string | undefined; Culture?: string | undefined; PrintWidth?: number | undefined; MaxPages?: number | undefined; DocumentName?: string | undefined; ScriptLanguage?: "C#" | "VB.NET" | undefined; ParamUI?: boolean | undefined; MasterReport?: string | undefined; ReportServerUri?: string | undefined; UserData?: string | undefined; StyleSheet?: InputOf | Decoder<{ ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; }, { ClassName: string; Parent: string | undefined; ForeColor: string; BackColor: string; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold"; FontStyle: "Normal" | "Italic"; VerticalText: boolean; DdoCharSet: string; TextAlign: "Center" | "Left" | "Right" | "Justify"; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper"; FontUnderline: boolean; FontLinethrough: boolean; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom"; WhiteSpace: "Normal" | "Pre" | "NoWrap"; WordWrap: "NoWrap" | "WordWrap" | "CharWrap"; ShrinkToFit: boolean; Kinsoku: "None" | "Auto" | "True"; }>>[] | undefined; Sections?: { Type?: "Detail" | "PageHeader" | "PageFooter" | "ReportHeader" | "ReportFooter" | "GroupHeader" | "GroupFooter" | undefined; Name?: string | undefined; Controls?: ({ Name: string; Type?: "Barcode" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: "None" | "Ansi39" | "Ansi39x" | "Code_2_of_5" | "Code25intlv" | "Code25mat" | "Matrix_2_of_5" | "Code39" | "Code39x" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_93" | "Code93x" | "MSI" | "PostNet" | "Codabar" | "EAN_8" | "EAN_13" | "UPC_A" | "UPC_E0" | "UPC_E1" | "RM4SCC" | "UCCEAN128" | "QRCode" | "Code49" | "JapanesePostal" | "Pdf417" | "EAN128FNC1" | "RSS14" | "RSS14Truncated" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "DataMatrix" | "MicroPDF417" | "MicroQRCode" | "MaxiCode" | "GS1QRCode" | "GS1DataMatrix" | "Aztec" | "IntelligentMail" | "ITF14" | "Code_11" | "SSCC_18" | "Telepen" | "Pharmacode" | "PZN" | "HIBCCode128" | "HIBCCode39" | "ISBN" | "ISSN" | "ISMN" | "IATA_2_of_5" | "BC412" | "Plessey" | "IntelligentMailPackage" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; BarWidth?: number | undefined; BarHeight?: number | undefined; SupplementBarHeight?: number | undefined; Alignment?: "Near" | "Center" | "Far" | undefined; SupplementText?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionPosition?: "None" | "Above" | "Below" | undefined; SupplementCaptionPosition?: "None" | "Above" | "Below" | undefined; Rotation?: "None" | "Rotate90Degrees" | "Rotate180Degrees" | "Rotate270Degrees" | undefined; AutoSize?: boolean | undefined; CheckSumEnabled?: boolean | undefined; QuietZoneLeft?: number | undefined; QuietZoneRight?: number | undefined; QuietZoneTop?: number | undefined; QuietZoneBottom?: number | undefined; NWRatio?: number | undefined; SupplementDataField?: string | undefined; SupplementSpacing?: number | undefined; ValueBinary?: string | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code128Options?: { Dpi?: number | undefined; BarAdjust?: number | undefined; ModuleSize?: number | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; Group?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Gs1CompositeOptions?: { Type?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; FileID?: number | undefined; SegmentCount?: number | undefined; SegmentIndex?: number | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; } | undefined; MicroQrCodeOptions?: { Encoding?: string | undefined; ErrorLevel?: "L" | "M" | "Q" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; } | undefined; Pdf417Options?: { Column?: number | undefined; Row?: number | undefined; ErrorLevel?: number | undefined; Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Encoding?: string | undefined; ErrorLevel?: "L" | "M" | "Q" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Version?: number | undefined; } | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; } | { BlackAndWhiteMode?: boolean | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; ChartBorder?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; GridLayout?: { Rows?: number | undefined; Columns?: number | undefined; } | undefined; Legends?: ({ Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Visible?: boolean | undefined; Header?: { Text?: string | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; Name?: string | undefined; } | undefined; Footer?: { Text?: string | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; Name?: string | undefined; } | undefined; LabelsFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; LegendItems?: ({ Text?: string | undefined; Style?: "None" | "Area" | "Line" | "Bar" | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Marker?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Label?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; } | undefined; LabelDistanceFactor?: number | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Size?: number | undefined; Style?: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond" | undefined; } | undefined; } | undefined)[] | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | "TopLegt" | undefined; MarginX?: number | undefined; MarginY?: number | undefined; DockArea?: string | undefined; DockInsideArea?: boolean | undefined; GridLayout?: { Rows?: number | undefined; Columns?: number | undefined; } | undefined; } | undefined)[] | undefined; ChartAreas?: ({ Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Padding?: { Top?: number | undefined; Right?: number | undefined; Bottom?: number | undefined; Left?: number | undefined; } | undefined; ZDepthRatio?: number | undefined; WallXZ?: { Width?: number | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; WallXY?: { Width?: number | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; WallYZ?: { Width?: number | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; Projection?: { ProjectionType?: "Identical" | "Orthogonal" | "Perspective" | undefined; ProjectionDX?: number | undefined; ProjectionDY?: number | undefined; HorizontalRotation?: number | undefined; VerticalRotation?: number | undefined; } | undefined; Light?: { Type?: "Ambient" | "InfiniteDirectional" | "FiniteDirectional" | undefined; Source?: { X?: number | undefined; Y?: number | undefined; Z?: number | undefined; } | undefined; DirectionalRatio?: number | undefined; } | undefined; Axes?: ({ Name?: string | undefined; Kind?: "Axis" | "CustomAxis" | undefined; TickOffset?: number | undefined; Position?: number | undefined; SmartLabels?: boolean | undefined; Arrow?: "None" | "Triangle" | "Lines" | undefined; AxisType?: "Categorical" | "Numerical" | "Logarithmic" | undefined; Min?: number | undefined; Max?: number | undefined; Title?: string | undefined; TitleFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; MajorTick?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; GridLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Step?: number | undefined; Length?: number | undefined; Visible?: boolean | undefined; } | undefined; MinorTick?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; GridLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Step?: number | undefined; Length?: number | undefined; Visible?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; LabelFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; LabelsGap?: number | undefined; LabelFormat?: string | undefined; Labels?: string[] | undefined; LabelsInside?: boolean | undefined; LabelsAtBottom?: boolean | undefined; LabelsVisible?: boolean | undefined; Scale?: number | undefined; DisplayScale?: boolean | undefined; Visible?: boolean | undefined; StaggerLabels?: boolean | undefined; } | undefined)[] | undefined; WallRanges?: ({ AdjacentAxes?: (string | undefined)[] | undefined; PrimaryAxis?: string | undefined; DrawOnTopOfGridLines?: boolean | undefined; StartValue?: number | undefined; EndValue?: number | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; } | undefined)[] | undefined; SwapAxesDirection?: boolean | undefined; SeriesLine?: { LineColor?: string | undefined; LineStyle?: "Transparent" | "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; } | undefined; } | undefined)[] | undefined; Series?: { ValueMemberX?: string | undefined; ValueMembersY?: string | undefined; Type?: "Area" | "Area3D" | "Bar2D" | "Bar3D" | "Bezier" | "BezierXY" | "BezierXY3D" | "Bezier3D" | "Bubble" | "BubbleXY" | "Candle" | "ClusteredBar" | "Doughnut" | "Doughnut3D" | "Funnel" | "Funnel3D" | "Gantt" | "Gantt3D" | "HiLo" | "HiLoOpenClose" | "HorizontalBar" | "HorizontalBar3D" | "Kagi" | "Kagi3D" | "Line" | "Line3D" | "LineXY" | "LineXY3D" | "PlotXY" | "PointAndFigure" | "Pyramid" | "Pyramid3D" | "Renko" | "Renko3D" | "Scatter" | "StackedArea" | "StackedArea3D" | "StackedBar" | "StackedBar3D" | "StackedArea100Pct" | "StackedArea3D100Pct" | "StackedBar100Pct" | "StackedBar3D100Pct" | "ThreeLineBreak" | "ThreeLineBreak3D" | null | undefined; AxisX?: string | undefined; AxisY?: string | undefined; ZOrder?: number | undefined; Visible?: boolean | undefined; ChartArea?: string | undefined; Legend?: string | undefined; Properties?: { Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Marker?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Label?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; } | undefined; LabelDistanceFactor?: number | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Size?: number | undefined; Style?: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond" | undefined; } | undefined; Tooltip?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; } | undefined; Gap?: number | undefined; ExplodeFactor?: number | undefined; OutsideLabels?: boolean | undefined; HoleSize?: number | undefined; StartAngle?: number | undefined; Clockwise?: boolean | undefined; LineBackdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; BorderLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Thickness?: number | undefined; Width?: number | undefined; LineJoin?: "Miter" | "Bevel" | "Round" | "MiterClipped" | undefined; BarType?: "Custom" | "Pyramid" | "Bar" | "Cone" | "Cylinder" | undefined; BarTopPercent?: number | undefined; VertexNumber?: number | undefined; RotationAngle?: number | undefined; PointBarDepth?: number | undefined; BodyDownswingBackdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; BodyUpswingBackdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; WickLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; BodyWidth?: number | undefined; CloseLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; OpenLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; HiLoLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; TickLen?: number | undefined; Shape?: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond" | undefined; MaxSizeFactor?: number | undefined; MinValue?: number | undefined; MaxValue?: number | undefined; PointGapPct?: number | undefined; MinPointHeight?: number | undefined; BaseStyle?: "CircularBase" | "SquareBase" | undefined; OutsideLabelsPlacement?: "Left" | "Right" | undefined; FunnelStyle?: "YIsWidth" | "YIsHeight" | undefined; NeckWidth?: number | undefined; NeckHeight?: number | undefined; CalloutLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; BoxSize?: number | undefined; ReversalAmount?: number | undefined; NewLineBreak?: number | undefined; UpswingLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; DownswingLine?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; Tension?: number | undefined; Radius?: number | undefined; } | undefined; Points?: ({ DisplayInLegend?: boolean | undefined; IsEmpty?: boolean | undefined; LegendText?: string | undefined; XValue?: string | undefined; YValues?: number[] | undefined; } | undefined)[] | undefined; Annotations?: ({ Type?: "Bar" | undefined; AnchorPlacement?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; AnchorPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; RotationAngle?: number | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Text?: string | undefined; Name?: string | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | { Type?: "Line" | undefined; StartPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; EndPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; StartConnection?: string | undefined; EndConnection?: string | undefined; StartConnectionIndex?: number | undefined; EndConnectionIndex?: number | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined)[] | undefined; ColorPalette?: "None" | "Default" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy" | undefined; LegendItemsMode?: "Auto" | "Series" | "Points" | undefined; DisplayInLegend?: boolean | undefined; LegendText?: string | undefined; Name?: string | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; }[] | undefined; Titles?: ({ Text?: string | undefined; Backdrop?: { Style?: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture" | undefined; Color?: string | undefined; Gradient?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | undefined; Name?: string | undefined; } | undefined)[] | undefined; AutoRefresh?: boolean | undefined; ColorPalette?: "None" | "Default" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy" | undefined; UIOptions?: "None" | "ContextCustomize" | "UseCustomTooltips" | "ForceHitTesting" | undefined; Culture?: string | undefined; Left?: number | undefined; Top?: number | undefined; Width?: number | undefined; Height?: number | undefined; Name?: string | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Type?: "Chart" | undefined; } | { Name: string; Type?: "CheckBox" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Checked?: boolean | undefined; CheckAlignment?: "TopLeft" | "TopCenter" | "TopRight" | "MiddleLeft" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; } | { Name: string; Type?: "CrossSectionLine" | undefined; Left?: number | undefined; Right?: number | undefined; Top?: number | undefined; Bottom?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; } | { Name: string; Type?: "CrossSectionBox" | undefined; Left?: number | undefined; Right?: number | undefined; Top?: number | undefined; Bottom?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; Radius?: { Default?: number | undefined; TopLeft?: number | undefined; TopRight?: number | undefined; BottomRight?: number | undefined; BottomLeft?: number | undefined; } | undefined; CloseBorder?: boolean | undefined; } | { Name: string; Type?: "Label" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Angle?: number | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; HyperLink?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; MinCondenseRate?: number | undefined; CharacterSpacing?: number | undefined; LineSpacing?: number | undefined; } | { Name: string; Type?: "Line" | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; X1?: number | undefined; X2?: number | undefined; Y1?: number | undefined; Y2?: number | undefined; AnchorBottom?: boolean | undefined; } | { Name: string; Type?: "PageBreak" | undefined; Left?: number | undefined; Top?: number | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Enabled?: boolean | undefined; } | { Name: string; Type?: "Picture" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; PictureAlignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Title?: string | undefined; LineColor?: string | undefined; LineStyle?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; HyperLink?: string | undefined; Image?: string | undefined; MimeType?: string | undefined; Description?: string | undefined; SizeMode?: "Clip" | "Stretch" | "Zoom" | undefined; } | { Name: string; Type?: "ReportInfo" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Culture?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; FormatString?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; SummaryRunning?: "None" | "All" | "Group" | undefined; SummaryGroup?: string | undefined; Calendar?: string | undefined; } | { Name: string; Type?: "RichTextBox" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; MultiLine?: boolean | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; AutoReplaceFields?: boolean | undefined; MaxLength?: number | undefined; RtfRenderingType?: "RTF" | "Metafile" | "PNG" | "TransparentPNG" | undefined; ContentType?: "Rtf" | "Html" | "Text" | undefined; Data?: string | undefined; } | { Name: string; Type?: "Shape" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot" | undefined; LineWeight?: number | undefined; Shape?: "Rectangle" | "Ellipse" | "RoundRect" | undefined; Radius?: { Default?: number | undefined; TopLeft?: number | undefined; TopRight?: number | undefined; BottomRight?: number | undefined; BottomLeft?: number | undefined; } | undefined; BackColor2?: string | undefined; BackgroundStyle?: "Pattern" | "Solid" | "Gradient" | undefined; GradientStyle?: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; BackgroundPattern?: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; } | { Name: string; Type?: "SubReport" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; ReportName?: string | undefined; } | { Name: string; Type?: "TextBox" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Culture?: string | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; HyperLink?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; MinCondenseRate?: number | undefined; CharacterSpacing?: number | undefined; LineSpacing?: number | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; SummaryRunning?: "None" | "All" | "Group" | undefined; SummaryGroup?: string | undefined; Calendar?: string | undefined; OutputFormat?: string | undefined; CurrencyCulture?: string | undefined; SummaryType?: "None" | "GrandTotal" | "PageTotal" | "SubTotal" | "PageCount" | undefined; SummaryFunc?: "Min" | "Max" | "Sum" | "Avg" | "Count" | "Var" | "VarP" | "StdDev" | "StdDevP" | "DSum" | "DAvg" | "DCount" | "DVar" | "DVarP" | "DStdDev" | "DStdDevP" | undefined; DistinctField?: string | undefined; CountNullValues?: boolean | undefined; } | { [x: string]: any; [x: number]: any; [x: symbol]: any; Name: any; } | { Name: string; Type?: "InputFieldText" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; Alignment?: "Center" | "Left" | "Right" | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; MultiLine?: boolean | undefined; MaxLength?: unknown; OutputFormat?: string | undefined; Password?: boolean | undefined; SpellCheck?: boolean | undefined; BorderColor?: string | undefined; BorderStyle?: "None" | "Solid" | "Dashed" | "Inset" | undefined; BorderWidth?: number | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } | { Name: string; Type?: "InputFieldCheckBox" | undefined; Left?: number | undefined; Top?: number | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Checked?: boolean | undefined; BorderColor?: string | undefined; BorderStyle?: "None" | "Solid" | "Dashed" | "Inset" | undefined; BorderWidth?: number | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; CheckSize?: number | undefined; CheckStyle?: "Cross" | "Square" | "Circle" | "Diamond" | "Check" | "Star" | undefined; })[] | undefined; Height?: number | undefined; BackColor?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; KeepTogether?: boolean | undefined; NewPage?: "None" | "Before" | "After" | "BeforeAfter" | undefined; NewColumn?: "None" | "Before" | "After" | "BeforeAfter" | undefined; PrintAtBottom?: boolean | undefined; Tag?: string | undefined; UnderlayNext?: boolean | undefined; Visible?: boolean | undefined; ColumnCount?: number | undefined; ColumnDirection?: "DownAcross" | "AcrossDown" | undefined; ColumnSpacing?: number | undefined; RepeatToFill?: boolean | undefined; DataField?: string | undefined; GroupKeepTogether?: "None" | "FirstDetail" | "All" | undefined; ColKeepTogether?: boolean | undefined; RepeatStyle?: "None" | "All" | "OnPage" | "OnColumn" | "OnPageIncludeNoDetail" | undefined; ColumnLayout?: boolean | undefined; }[] | undefined; DataSource?: { ConnectionString?: string | undefined; Type?: "CSV" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; JsonPath?: string | undefined; Type?: "JSON" | undefined; DataMember?: string | undefined; } | { FileURL?: string | undefined; Pattern?: string | undefined; Type?: "XML" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "SQL" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "ODBC" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "OLEDB" | undefined; DataMember?: string | undefined; } | { Name?: string | undefined; Type?: "NonSerializable" | undefined; DataMember?: string | undefined; } | undefined; CalculatedFields?: { Name?: string | undefined; FieldType?: "None" | "String" | "Date" | "Int32" | "Float" | "Double" | "Boolean" | undefined; Formula?: string | undefined; DefaultValue?: string | undefined; }[] | undefined; Script?: string | undefined; PageSettings?: { TopMargin?: number | undefined; RightMargin?: number | undefined; BottomMargin?: number | undefined; LeftMargin?: number | undefined; GutterMargin?: number | undefined; MirrorMargins?: boolean | undefined; PaperSize?: { Size?: "Letter" | "Tabloid" | "Legal" | "Executive" | "A3" | "A4" | "A5" | "A6" | "JISB4" | "ISOB5" | "Custom" | undefined; Width?: number | undefined; Height?: number | undefined; } | undefined; Orientation?: "Default" | "Portrait" | "Landscape" | undefined; Collate?: "Default" | "Collate" | "DontCollate" | undefined; Duplex?: "Default" | "Simplex" | "Vertical" | "Horizontal" | undefined; } | undefined; Watermark?: { Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; SizeMode?: "Clip" | "Stretch" | "Zoom" | undefined; PrintOnPages?: string | undefined; Image?: string | undefined; } | undefined; Parameters?: { Key?: string | undefined; ParameterType?: "String" | "Date" | "Boolean" | undefined; Prompt?: string | undefined; DefaultValue?: string | undefined; PromptUser?: boolean | undefined; QueryCreated?: boolean | undefined; DisplayFormat?: string | undefined; }[] | undefined; }, { Version: string | undefined; CompatibilityMode: "GDI" | "CrossPlatform"; ExpressionErrorMessage: string | undefined; Culture: string | undefined; PrintWidth: number; MaxPages: number; DocumentName: string; ScriptLanguage: "C#" | "VB.NET"; ParamUI: boolean; MasterReport: string | undefined; ReportServerUri: string | undefined; UserData: string | undefined; StyleSheet: TypeOf | Decoder<{ ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace?: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap?: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; }, { ClassName: string; Parent: string | undefined; ForeColor: string; BackColor: string; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold"; FontStyle: "Normal" | "Italic"; VerticalText: boolean; DdoCharSet: string; TextAlign: "Center" | "Left" | "Right" | "Justify"; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper"; FontUnderline: boolean; FontLinethrough: boolean; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom"; WhiteSpace: "Normal" | "Pre" | "NoWrap"; WordWrap: "NoWrap" | "WordWrap" | "CharWrap"; ShrinkToFit: boolean; Kinsoku: "None" | "Auto" | "True"; }>>[]; Sections: { Type: "Detail" | "PageHeader" | "PageFooter" | "ReportHeader" | "ReportFooter" | "GroupHeader" | "GroupFooter"; Name: string; Controls: ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: "None" | "Ansi39" | "Ansi39x" | "Code_2_of_5" | "Code25intlv" | "Code25mat" | "Matrix_2_of_5" | "Code39" | "Code39x" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_93" | "Code93x" | "MSI" | "PostNet" | "Codabar" | "EAN_8" | "EAN_13" | "UPC_A" | "UPC_E0" | "UPC_E1" | "RM4SCC" | "UCCEAN128" | "QRCode" | "Code49" | "JapanesePostal" | "Pdf417" | "EAN128FNC1" | "RSS14" | "RSS14Truncated" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "DataMatrix" | "MicroPDF417" | "MicroQRCode" | "MaxiCode" | "GS1QRCode" | "GS1DataMatrix" | "Aztec" | "IntelligentMail" | "ITF14" | "Code_11" | "SSCC_18" | "Telepen" | "Pharmacode" | "PZN" | "HIBCCode128" | "HIBCCode39" | "ISBN" | "ISSN" | "ISMN" | "IATA_2_of_5" | "BC412" | "Plessey" | "IntelligentMailPackage"; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold"; FontStyle: "Normal" | "Italic"; FontUnderline: boolean; FontLinethrough: boolean; BackColor: string; ForeColor: string; BarWidth: number; BarHeight: number; SupplementBarHeight: number; Alignment: "Near" | "Center" | "Far"; Text: string; SupplementText: string; CaptionGrouping: boolean; CaptionPosition: "None" | "Above" | "Below"; SupplementCaptionPosition: "None" | "Above" | "Below"; Rotation: "None" | "Rotate90Degrees" | "Rotate180Degrees" | "Rotate270Degrees"; AutoSize: boolean; CheckSumEnabled: boolean; QuietZoneLeft: number; QuietZoneRight: number; QuietZoneTop: number; QuietZoneBottom: number; NWRatio: number; SupplementDataField: string; SupplementSpacing: number; ValueBinary: string | undefined; AztecOptions: { ErrorCorrection: number; Layers: number; Encoding: string; }; Code128Options: { Dpi: number; BarAdjust: number; ModuleSize: number; }; Code49Options: { Grouping: boolean; Group: number; }; DataMatrixOptions: { EccMode: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140"; Ecc200SymbolSize: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48"; Ecc200EncodingMode: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256"; Ecc000_140SymbolSize: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49"; StructuredAppend: boolean; StructureNumber: number; FileIdentifier: number; Encoding: string; }; Gs1CompositeOptions: { Type: "None" | "CCA"; Value: string; }; MaxiCodeOptions: { Mode: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6"; }; MicroPdf417Options: { CompactionMode: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode"; FileID: number; SegmentCount: number; SegmentIndex: number; Version: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44"; }; MicroQrCodeOptions: { Encoding: string; ErrorLevel: "L" | "M" | "Q"; Mask: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11"; Version: "Auto" | "M1" | "M2" | "M3" | "M4"; }; Pdf417Options: { Column: number; Row: number; ErrorLevel: number; Type: "Normal" | "Simple"; }; QrCodeOptions: { Connection: boolean; ConnectionNumber: number; Encoding: string; ErrorLevel: "L" | "M" | "Q" | "H"; Mask: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111"; Model: "Model2" | "Model1"; Version: number; }; RssExpandedStacked: { RowCount: number; }; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Barcode"; } | { BlackAndWhiteMode: boolean; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; ChartBorder: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; GridLayout: { Rows: number; Columns: number; }; Legends: { Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Visible: boolean; Header: { Text: string; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Docking: "Left" | "Right" | "Top" | "Bottom"; DockArea: string; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; Name: string; }; Footer: { Text: string; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Docking: "Left" | "Right" | "Top" | "Bottom"; DockArea: string; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; Name: string; }; LabelsFont: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; LegendItems: { Text: string; Style: "None" | "Area" | "Line" | "Bar"; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Marker: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Label: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Border: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Format: string; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; }; LabelDistanceFactor: number; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Size: number; Style: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond"; }; }[]; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom" | "TopLegt"; MarginX: number; MarginY: number; DockArea: string; DockInsideArea: boolean; GridLayout: { Rows: number; Columns: number; }; }[]; ChartAreas: { Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Padding: { Top: number; Right: number; Bottom: number; Left: number; }; ZDepthRatio: number; WallXZ: { Width: number; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }; WallXY: { Width: number; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }; WallYZ: { Width: number; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }; Projection: { ProjectionType: "Identical" | "Orthogonal" | "Perspective"; ProjectionDX: number; ProjectionDY: number; HorizontalRotation: number; VerticalRotation: number; }; Light: { Type: "Ambient" | "InfiniteDirectional" | "FiniteDirectional"; Source: { X: number; Y: number; Z: number; }; DirectionalRatio: number; }; Axes: { Name: string; Kind: "Axis" | "CustomAxis"; TickOffset: number; Position: number; SmartLabels: boolean; Arrow: "None" | "Triangle" | "Lines"; AxisType: "Categorical" | "Numerical" | "Logarithmic"; Min: number; Max: number; Title: string; TitleFont: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; MajorTick: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; GridLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Step: number; Length: number; Visible: boolean; }; MinorTick: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; GridLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Step: number; Length: number; Visible: boolean; }; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; LabelFont: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; LabelsGap: number; LabelFormat: string; Labels: string[]; LabelsInside: boolean; LabelsAtBottom: boolean; LabelsVisible: boolean; Scale: number; DisplayScale: boolean; Visible: boolean; StaggerLabels: boolean; }[]; WallRanges: { AdjacentAxes: string[]; PrimaryAxis: string; DrawOnTopOfGridLines: boolean; StartValue: number; EndValue: number; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; }[]; SwapAxesDirection: boolean; SeriesLine: { LineColor: string; LineStyle: "Transparent" | "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; }; }[]; Series: { ValueMemberX: string; ValueMembersY: string; Type: "Area" | "Area3D" | "Bar2D" | "Bar3D" | "Bezier" | "BezierXY" | "BezierXY3D" | "Bezier3D" | "Bubble" | "BubbleXY" | "Candle" | "ClusteredBar" | "Doughnut" | "Doughnut3D" | "Funnel" | "Funnel3D" | "Gantt" | "Gantt3D" | "HiLo" | "HiLoOpenClose" | "HorizontalBar" | "HorizontalBar3D" | "Kagi" | "Kagi3D" | "Line" | "Line3D" | "LineXY" | "LineXY3D" | "PlotXY" | "PointAndFigure" | "Pyramid" | "Pyramid3D" | "Renko" | "Renko3D" | "Scatter" | "StackedArea" | "StackedArea3D" | "StackedBar" | "StackedBar3D" | "StackedArea100Pct" | "StackedArea3D100Pct" | "StackedBar100Pct" | "StackedBar3D100Pct" | "ThreeLineBreak" | "ThreeLineBreak3D" | null; AxisX: string; AxisY: string; ZOrder: number | null; Visible: boolean; ChartArea: string; Legend: string; Properties: { Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Marker: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Label: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Border: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Format: string; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; }; LabelDistanceFactor: number; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Size: number; Style: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond"; }; Tooltip: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Border: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Format: string; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; }; Gap: number; ExplodeFactor: number; OutsideLabels: boolean; HoleSize: number; StartAngle: number; Clockwise: boolean; LineBackdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; BorderLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Thickness: number; Width: number; LineJoin: "Miter" | "Bevel" | "Round" | "MiterClipped"; BarType: "Custom" | "Pyramid" | "Bar" | "Cone" | "Cylinder"; BarTopPercent: number; VertexNumber: number; RotationAngle: number; PointBarDepth: number; BodyDownswingBackdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; BodyUpswingBackdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; WickLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; BodyWidth: number; CloseLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; OpenLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; HiLoLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; TickLen: number; Shape: "None" | "Cross" | "Triangle" | "Pyramid" | "Point" | "Square" | "Circle" | "InvTriangle" | "Diamond"; MaxSizeFactor: number; MinValue: number; MaxValue: number; PointGapPct: number; MinPointHeight: number; BaseStyle: "CircularBase" | "SquareBase"; OutsideLabelsPlacement: "Left" | "Right"; FunnelStyle: "YIsWidth" | "YIsHeight"; NeckWidth: number; NeckHeight: number; CalloutLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; BoxSize: number; ReversalAmount: number; NewLineBreak: number; UpswingLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; DownswingLine: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; Tension: number; Radius: number; }; Points: { DisplayInLegend: boolean | null; IsEmpty: boolean; LegendText: string; XValue: string; YValues: number[]; }[]; Annotations: ({ Type: "Bar"; AnchorPlacement: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; AnchorPoint: { X: number; Y: number; }; Width: number; Height: number; RotationAngle: number; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Text: string; Name: string; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; } | { Type: "Line"; StartPoint: { X: number; Y: number; }; EndPoint: { X: number; Y: number; }; Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; StartConnection: string; EndConnection: string; StartConnectionIndex: number; EndConnectionIndex: number; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; })[]; ColorPalette: "None" | "Default" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy"; LegendItemsMode: "Auto" | "Series" | "Points"; DisplayInLegend: boolean; LegendText: string; Name: string | null; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }[]; Titles: { Text: string; Backdrop: { Style: "Transparent" | "Pattern" | "Solid" | "Gradient" | "Picture"; Color: string; Gradient: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Docking: "Left" | "Right" | "Top" | "Bottom"; DockArea: string; Border: { Line: { Color: string; Style: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "Left" | "Right" | "Top" | "Bottom"; Name: string; }[]; AutoRefresh: boolean; ColorPalette: "None" | "Default" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy"; UIOptions: "None" | "ContextCustomize" | "UseCustomTooltips" | "ForceHitTesting"; Culture: string; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Chart"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; Checked: boolean; Text: string | undefined; CheckAlignment: "TopLeft" | "TopCenter" | "TopRight" | "MiddleLeft" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight"; PaddingTop: number; PaddingRight: number; PaddingBottom: number; PaddingLeft: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "CheckBox"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Left: number; Top: number; Right: number; Bottom: number; LineColor: string; LineStyle: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "CrossSectionLine"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; CloseBorder: boolean; BackColor: string; Radius: { Default: number; TopLeft: number | undefined; TopRight: number | undefined; BottomRight: number | undefined; BottomLeft: number | undefined; }; Left: number; Top: number; Right: number; Bottom: number; LineColor: string; LineStyle: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "CrossSectionBox"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; Text: string | undefined; HyperLink: string | undefined; MultiLine: boolean; RightToLeft: boolean; Angle: number; MinCondenseRate: number; CharacterSpacing: number; LineSpacing: number; PaddingTop: number; PaddingRight: number; PaddingBottom: number; PaddingLeft: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Label"; } | { X1: number; X2: number; Y1: number; Y2: number; LineColor: string; LineStyle: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; AnchorBottom: boolean; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Line"; } | { Enabled: boolean; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "PageBreak"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Image: string | undefined; MimeType: string | undefined; HyperLink: string | undefined; Title: string | undefined; Description: string | undefined; SizeMode: "Clip" | "Stretch" | "Zoom"; PictureAlignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight"; BackColor: string; LineColor: string; LineStyle: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Picture"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; FormatString: string; MultiLine: boolean; CanGrow: boolean; CanShrink: boolean; RightToLeft: boolean; SummaryRunning: "None" | "All" | "Group"; SummaryGroup: string; Culture: string; Calendar: string; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "ReportInfo"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; AutoReplaceFields: boolean; BackColor: string; CanGrow: boolean; CanShrink: boolean; MaxLength: number; MultiLine: boolean; RtfRenderingType: "RTF" | "Metafile" | "PNG" | "TransparentPNG"; ContentType: "Rtf" | "Html" | "Text"; Data: string | undefined; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "RichTextBox"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Shape: "Rectangle" | "Ellipse" | "RoundRect"; BackColor: string; BackColor2: string; BackgroundStyle: "Pattern" | "Solid" | "Gradient"; GradientStyle: "Vertical" | "Horizontal" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; BackgroundPattern: "Vertical" | "Horizontal" | "Min" | "ForwardDiagonal" | "BackwardDiagonal" | "Cross" | "LargeGrid" | "Max" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; LineColor: string; LineStyle: "Transparent" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"; LineWeight: number; Radius: { Default: number; TopLeft: number | undefined; TopRight: number | undefined; BottomRight: number | undefined; BottomLeft: number | undefined; }; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Shape"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; ReportName: string; CanGrow: boolean; CanShrink: boolean; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "SubReport"; } | { Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Double" | "Solid" | "Dash" | "Dot" | "DashDot" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Inter_word" | "Inter_ideograph" | "Distribute" | "Distribute_all_lines" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "BaseLine" | "Sub" | "Super" | "Top" | "TextTop" | "Middle" | "TextBottom" | "Bottom" | undefined; WhiteSpace: "Normal" | "Pre" | "NoWrap" | undefined; WordWrap: "NoWrap" | "WordWrap" | "CharWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; Text: string | undefined; HyperLink: string | undefined; OutputFormat: string | undefined; Culture: string | undefined; CurrencyCulture: string | undefined; Calendar: string | undefined; MultiLine: boolean; CanGrow: boolean; CanShrink: boolean; RightToLeft: boolean; SummaryType: "None" | "GrandTotal" | "PageTotal" | "SubTotal" | "PageCount"; SummaryFunc: "Min" | "Max" | "Sum" | "Avg" | "Count" | "Var" | "VarP" | "StdDev" | "StdDevP" | "DSum" | "DAvg" | "DCount" | "DVar" | "DVarP" | "DStdDev" | "DStdDevP"; SummaryRunning: "None" | "All" | "Group"; SummaryGroup: string | undefined; DistinctField: string | undefined; CountNullValues: boolean; CharacterSpacing: number; MinCondenseRate: number; LineSpacing: number; PaddingTop: number; PaddingRight: number; PaddingBottom: number; PaddingLeft: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "TextBox"; } | ({ Item: any; } & { Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Unknown"; }) | { OutputFormat: string; Text: string; MaxLength: unknown; MultiLine: boolean; Password: boolean; SpellCheck: boolean; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold"; FontStyle: "Normal" | "Italic"; Alignment: "Center" | "Left" | "Right"; FontUnderline: boolean; FontLinethrough: boolean; BackColor: string; BorderColor: string; BorderStyle: "None" | "Solid" | "Dashed" | "Inset"; BorderWidth: number; ForeColor: string; FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "InputFieldText"; } | { CheckSize: number; Checked: boolean; CheckStyle: "Cross" | "Square" | "Circle" | "Diamond" | "Check" | "Star"; BackColor: string; BorderColor: string; BorderStyle: "None" | "Solid" | "Dashed" | "Inset"; BorderWidth: number; ForeColor: string; FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "InputFieldCheckBox"; })[]; Height: number; BackColor: string; CanGrow: boolean; CanShrink: boolean; KeepTogether: boolean; NewPage: "None" | "Before" | "After" | "BeforeAfter"; NewColumn: "None" | "Before" | "After" | "BeforeAfter"; PrintAtBottom: boolean; Tag: string | undefined; UnderlayNext: boolean; Visible: boolean; ColumnCount: number; ColumnDirection: "DownAcross" | "AcrossDown"; ColumnSpacing: number; RepeatToFill: boolean; DataField: string | undefined; GroupKeepTogether: "None" | "FirstDetail" | "All"; ColKeepTogether: boolean; RepeatStyle: "None" | "All" | "OnPage" | "OnColumn" | "OnPageIncludeNoDetail"; ColumnLayout: boolean; }[]; DataSource: { ConnectionString: string; Type: "CSV"; DataMember: string | undefined; } | { ConnectionString: string; JsonPath: string; Type: "JSON"; DataMember: string | undefined; } | { FileURL: string; Pattern: string; Type: "XML"; DataMember: string | undefined; } | { ConnectionString: string; CommandText: string; CommandTimeout: number; Type: "SQL"; DataMember: string | undefined; } | { ConnectionString: string; CommandText: string; CommandTimeout: number; Type: "ODBC"; DataMember: string | undefined; } | { ConnectionString: string; CommandText: string; CommandTimeout: number; Type: "OLEDB"; DataMember: string | undefined; } | { Name: string; Type: "NonSerializable"; DataMember: string | undefined; } | undefined; CalculatedFields: { Name: string; FieldType: "None" | "String" | "Date" | "Int32" | "Float" | "Double" | "Boolean"; Formula: string | undefined; DefaultValue: string | undefined; }[]; Script: string | undefined; PageSettings: { TopMargin: number; RightMargin: number; BottomMargin: number; LeftMargin: number; GutterMargin: number; MirrorMargins: boolean; PaperSize: { Size: "Letter" | "Tabloid" | "Legal" | "Executive" | "A3" | "A4" | "A5" | "A6" | "JISB4" | "ISOB5" | "Custom"; Width: number; Height: number; }; Orientation: "Default" | "Portrait" | "Landscape"; Collate: "Default" | "Collate" | "DontCollate"; Duplex: "Default" | "Simplex" | "Vertical" | "Horizontal"; }; Watermark: { Alignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight"; SizeMode: "Clip" | "Stretch" | "Zoom"; PrintOnPages: string | undefined; Image: string | undefined; }; Parameters: { Key: string; ParameterType: "String" | "Date" | "Boolean"; Prompt: string | undefined; DefaultValue: string | undefined; PromptUser: boolean; QueryCreated: boolean; DisplayFormat: string; }[]; }>; type CalculatedField = TypeOf; type Report = TypeOf; type Section = TypeOf; type Selectable = { $path: string; $selected?: 'leaf' | 'partial'; $primary?: boolean; }; declare const SelectableControlDecoder: Decoder$1<{ Name: string; Type?: "Barcode" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | "Code25mat" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; BarWidth?: number | undefined; BarHeight?: number | undefined; SupplementBarHeight?: number | undefined; Alignment?: "Center" | "Near" | "Far" | undefined; SupplementText?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionPosition?: "None" | "Above" | "Below" | undefined; SupplementCaptionPosition?: "None" | "Above" | "Below" | undefined; Rotation?: "None" | "Rotate90Degrees" | "Rotate180Degrees" | "Rotate270Degrees" | undefined; AutoSize?: boolean | undefined; CheckSumEnabled?: boolean | undefined; QuietZoneLeft?: number | undefined; QuietZoneRight?: number | undefined; QuietZoneTop?: number | undefined; QuietZoneBottom?: number | undefined; NWRatio?: number | undefined; SupplementDataField?: string | undefined; SupplementSpacing?: number | undefined; ValueBinary?: string | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code128Options?: { Dpi?: number | undefined; BarAdjust?: number | undefined; ModuleSize?: number | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; Group?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Gs1CompositeOptions?: { Type?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; FileID?: number | undefined; SegmentCount?: number | undefined; SegmentIndex?: number | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; } | undefined; MicroQrCodeOptions?: { Encoding?: string | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; } | undefined; Pdf417Options?: { Column?: number | undefined; Row?: number | undefined; ErrorLevel?: number | undefined; Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Encoding?: string | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Version?: number | undefined; } | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; } | { BlackAndWhiteMode?: boolean | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; ChartBorder?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; GridLayout?: { Rows?: number | undefined; Columns?: number | undefined; } | undefined; Legends?: ({ Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Visible?: boolean | undefined; Header?: { Text?: string | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Name?: string | undefined; } | undefined; Footer?: { Text?: string | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Name?: string | undefined; } | undefined; LabelsFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; LegendItems?: ({ Text?: string | undefined; Style?: "None" | "Bar" | "Line" | "Area" | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Marker?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Label?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; } | undefined; LabelDistanceFactor?: number | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Size?: number | undefined; Style?: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle" | undefined; } | undefined; } | undefined)[] | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "TopLegt" | undefined; MarginX?: number | undefined; MarginY?: number | undefined; DockArea?: string | undefined; DockInsideArea?: boolean | undefined; GridLayout?: { Rows?: number | undefined; Columns?: number | undefined; } | undefined; } | undefined)[] | undefined; ChartAreas?: ({ Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Padding?: { Top?: number | undefined; Right?: number | undefined; Bottom?: number | undefined; Left?: number | undefined; } | undefined; ZDepthRatio?: number | undefined; WallXZ?: { Width?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; WallXY?: { Width?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; WallYZ?: { Width?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; Projection?: { ProjectionType?: "Perspective" | "Identical" | "Orthogonal" | undefined; ProjectionDX?: number | undefined; ProjectionDY?: number | undefined; HorizontalRotation?: number | undefined; VerticalRotation?: number | undefined; } | undefined; Light?: { Type?: "Ambient" | "InfiniteDirectional" | "FiniteDirectional" | undefined; Source?: { X?: number | undefined; Y?: number | undefined; Z?: number | undefined; } | undefined; DirectionalRatio?: number | undefined; } | undefined; Axes?: ({ Name?: string | undefined; Kind?: "Axis" | "CustomAxis" | undefined; TickOffset?: number | undefined; Position?: number | undefined; SmartLabels?: boolean | undefined; Arrow?: "None" | "Triangle" | "Lines" | undefined; AxisType?: "Logarithmic" | "Categorical" | "Numerical" | undefined; Min?: number | undefined; Max?: number | undefined; Title?: string | undefined; TitleFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; MajorTick?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; GridLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Step?: number | undefined; Length?: number | undefined; Visible?: boolean | undefined; } | undefined; MinorTick?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; GridLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Step?: number | undefined; Length?: number | undefined; Visible?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; LabelFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; LabelsGap?: number | undefined; LabelFormat?: string | undefined; Labels?: string[] | undefined; LabelsInside?: boolean | undefined; LabelsAtBottom?: boolean | undefined; LabelsVisible?: boolean | undefined; Scale?: number | undefined; DisplayScale?: boolean | undefined; Visible?: boolean | undefined; StaggerLabels?: boolean | undefined; } | undefined)[] | undefined; WallRanges?: ({ AdjacentAxes?: (string | undefined)[] | undefined; PrimaryAxis?: string | undefined; DrawOnTopOfGridLines?: boolean | undefined; StartValue?: number | undefined; EndValue?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; } | undefined)[] | undefined; SwapAxesDirection?: boolean | undefined; SeriesLine?: { LineColor?: string | undefined; LineStyle?: "None" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; } | undefined; } | undefined)[] | undefined; Series?: { ValueMemberX?: string | undefined; ValueMembersY?: string | undefined; Type?: "Line" | "Area" | "Scatter" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "StackedBar" | "Doughnut" | "HiLoOpenClose" | "Area3D" | "Bar2D" | "Bar3D" | "Bezier" | "BezierXY" | "BezierXY3D" | "Bezier3D" | "BubbleXY" | "Candle" | "ClusteredBar" | "Doughnut3D" | "Funnel3D" | "Gantt3D" | "HiLo" | "HorizontalBar" | "HorizontalBar3D" | "Kagi" | "Kagi3D" | "Line3D" | "LineXY" | "LineXY3D" | "PlotXY" | "PointAndFigure" | "Pyramid3D" | "Renko" | "Renko3D" | "StackedArea" | "StackedArea3D" | "StackedBar3D" | "StackedArea100Pct" | "StackedArea3D100Pct" | "StackedBar100Pct" | "StackedBar3D100Pct" | "ThreeLineBreak" | "ThreeLineBreak3D" | null | undefined; AxisX?: string | undefined; AxisY?: string | undefined; ZOrder?: number | undefined; Visible?: boolean | undefined; ChartArea?: string | undefined; Legend?: string | undefined; Properties?: { Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Marker?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Label?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; } | undefined; LabelDistanceFactor?: number | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Size?: number | undefined; Style?: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle" | undefined; } | undefined; Tooltip?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; } | undefined; Gap?: number | undefined; ExplodeFactor?: number | undefined; OutsideLabels?: boolean | undefined; HoleSize?: number | undefined; StartAngle?: number | undefined; Clockwise?: boolean | undefined; LineBackdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; BorderLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Thickness?: number | undefined; Width?: number | undefined; LineJoin?: "Round" | "Miter" | "Bevel" | "MiterClipped" | undefined; BarType?: "Bar" | "Custom" | "Pyramid" | "Cone" | "Cylinder" | undefined; BarTopPercent?: number | undefined; VertexNumber?: number | undefined; RotationAngle?: number | undefined; PointBarDepth?: number | undefined; BodyDownswingBackdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; BodyUpswingBackdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; WickLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; BodyWidth?: number | undefined; CloseLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; OpenLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; HiLoLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; TickLen?: number | undefined; Shape?: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle" | undefined; MaxSizeFactor?: number | undefined; MinValue?: number | undefined; MaxValue?: number | undefined; PointGapPct?: number | undefined; MinPointHeight?: number | undefined; BaseStyle?: "CircularBase" | "SquareBase" | undefined; OutsideLabelsPlacement?: "Left" | "Right" | undefined; FunnelStyle?: "YIsWidth" | "YIsHeight" | undefined; NeckWidth?: number | undefined; NeckHeight?: number | undefined; CalloutLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; BoxSize?: number | undefined; ReversalAmount?: number | undefined; NewLineBreak?: number | undefined; UpswingLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; DownswingLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Tension?: number | undefined; Radius?: number | undefined; } | undefined; Points?: ({ DisplayInLegend?: boolean | undefined; IsEmpty?: boolean | undefined; LegendText?: string | undefined; XValue?: string | undefined; YValues?: number[] | undefined; } | undefined)[] | undefined; Annotations?: ({ Type?: "Bar" | undefined; AnchorPlacement?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; AnchorPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; RotationAngle?: number | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Text?: string | undefined; Name?: string | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | { Type?: "Line" | undefined; StartPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; EndPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; StartConnection?: string | undefined; EndConnection?: string | undefined; StartConnectionIndex?: number | undefined; EndConnectionIndex?: number | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined)[] | undefined; ColorPalette?: "Default" | "None" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy" | undefined; LegendItemsMode?: "Auto" | "Points" | "Series" | undefined; DisplayInLegend?: boolean | undefined; LegendText?: string | undefined; Name?: string | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; }[] | undefined; Titles?: ({ Text?: string | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Name?: string | undefined; } | undefined)[] | undefined; AutoRefresh?: boolean | undefined; ColorPalette?: "Default" | "None" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy" | undefined; UIOptions?: "None" | "ContextCustomize" | "UseCustomTooltips" | "ForceHitTesting" | undefined; Culture?: string | undefined; Left?: number | undefined; Top?: number | undefined; Width?: number | undefined; Height?: number | undefined; Name?: string | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Type?: "Chart" | undefined; } | { Name: string; Type?: "CheckBox" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Checked?: boolean | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; } | { Name: string; Type?: "CrossSectionLine" | undefined; Left?: number | undefined; Right?: number | undefined; Top?: number | undefined; Bottom?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; } | { Name: string; Type?: "CrossSectionBox" | undefined; Left?: number | undefined; Right?: number | undefined; Top?: number | undefined; Bottom?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; Radius?: { Default?: number | undefined; TopLeft?: number | undefined; TopRight?: number | undefined; BottomRight?: number | undefined; BottomLeft?: number | undefined; } | undefined; CloseBorder?: boolean | undefined; } | { Name: string; Type?: "Label" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Angle?: number | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; HyperLink?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; MinCondenseRate?: number | undefined; CharacterSpacing?: number | undefined; LineSpacing?: number | undefined; } | { Name: string; Type?: "Line" | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; X1?: number | undefined; X2?: number | undefined; Y1?: number | undefined; Y2?: number | undefined; AnchorBottom?: boolean | undefined; } | { Name: string; Type?: "PageBreak" | undefined; Left?: number | undefined; Top?: number | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Enabled?: boolean | undefined; } | { Name: string; Type?: "Picture" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; PictureAlignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Title?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; HyperLink?: string | undefined; Image?: string | undefined; MimeType?: string | undefined; Description?: string | undefined; SizeMode?: "Clip" | "Stretch" | "Zoom" | undefined; } | { Name: string; Type?: "ReportInfo" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Culture?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; FormatString?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; SummaryRunning?: "None" | "Group" | "All" | undefined; SummaryGroup?: string | undefined; Calendar?: string | undefined; } | { Name: string; Type?: "RichTextBox" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; MultiLine?: boolean | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; AutoReplaceFields?: boolean | undefined; MaxLength?: number | undefined; RtfRenderingType?: "RTF" | "Metafile" | "PNG" | "TransparentPNG" | undefined; ContentType?: "Text" | "Html" | "Rtf" | undefined; Data?: string | undefined; } | { Name: string; Type?: "Shape" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; Shape?: "Rectangle" | "RoundRect" | "Ellipse" | undefined; Radius?: { Default?: number | undefined; TopLeft?: number | undefined; TopRight?: number | undefined; BottomRight?: number | undefined; BottomLeft?: number | undefined; } | undefined; BackColor2?: string | undefined; BackgroundStyle?: "Solid" | "Gradient" | "Pattern" | undefined; GradientStyle?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; BackgroundPattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; } | { Name: string; Type?: "SubReport" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; ReportName?: string | undefined; } | { Name: string; Type?: "TextBox" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Culture?: string | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; HyperLink?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; MinCondenseRate?: number | undefined; CharacterSpacing?: number | undefined; LineSpacing?: number | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; SummaryRunning?: "None" | "Group" | "All" | undefined; SummaryGroup?: string | undefined; Calendar?: string | undefined; OutputFormat?: string | undefined; CurrencyCulture?: string | undefined; SummaryType?: "None" | "GrandTotal" | "PageTotal" | "SubTotal" | "PageCount" | undefined; SummaryFunc?: "Count" | "Max" | "Min" | "Sum" | "Avg" | "Var" | "VarP" | "StdDev" | "StdDevP" | "DSum" | "DAvg" | "DCount" | "DVar" | "DVarP" | "DStdDev" | "DStdDevP" | undefined; DistinctField?: string | undefined; CountNullValues?: boolean | undefined; } | { [x: string]: any; [x: number]: any; [x: symbol]: any; Name: any; } | { Name: string; Type?: "InputFieldText" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; Alignment?: "Center" | "Left" | "Right" | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; MultiLine?: boolean | undefined; MaxLength?: unknown; OutputFormat?: string | undefined; Password?: boolean | undefined; SpellCheck?: boolean | undefined; BorderColor?: string | undefined; BorderStyle?: "None" | "Dashed" | "Solid" | "Inset" | undefined; BorderWidth?: number | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } | { Name: string; Type?: "InputFieldCheckBox" | undefined; Left?: number | undefined; Top?: number | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Checked?: boolean | undefined; BorderColor?: string | undefined; BorderStyle?: "None" | "Dashed" | "Solid" | "Inset" | undefined; BorderWidth?: number | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; CheckSize?: number | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; }, ({ BlackAndWhiteMode: boolean; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; ChartBorder: { Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; GridLayout: { Rows: number; Columns: number; }; Legends: { Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Border: { Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Visible: boolean; Header: { Text: string; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Docking: "Left" | "Right" | "Top" | "Bottom"; DockArea: string; Border: { Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Alignment: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight"; Name: string; }; Footer: { Text: string; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Docking: "Left" | "Right" | "Top" | "Bottom"; DockArea: string; Border: { Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Alignment: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight"; Name: string; }; LabelsFont: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; LegendItems: { Text: string; Style: "None" | "Bar" | "Line" | "Area"; Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Border: { Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Marker: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Label: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Border: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Format: string; Alignment: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight"; }; LabelDistanceFactor: number; Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; Size: number; Style: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle"; }; }[]; Alignment: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "TopLegt"; MarginX: number; MarginY: number; DockArea: string; DockInsideArea: boolean; GridLayout: { Rows: number; Columns: number; }; }[]; ChartAreas: { Border: { Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Padding: { Top: number; Right: number; Bottom: number; Left: number; }; ZDepthRatio: number; WallXZ: { Width: number; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }; WallXY: { Width: number; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }; WallYZ: { Width: number; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }; Projection: { ProjectionType: "Perspective" | "Identical" | "Orthogonal"; ProjectionDX: number; ProjectionDY: number; HorizontalRotation: number; VerticalRotation: number; }; Light: { Type: "Ambient" | "InfiniteDirectional" | "FiniteDirectional"; Source: { X: number; Y: number; Z: number; }; DirectionalRatio: number; }; Axes: { Name: string; Kind: "Axis" | "CustomAxis"; TickOffset: number; Position: number; SmartLabels: boolean; Arrow: "None" | "Triangle" | "Lines"; AxisType: "Logarithmic" | "Categorical" | "Numerical"; Min: number; Max: number; Title: string; TitleFont: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; MajorTick: { Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; GridLine: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; Step: number; Length: number; Visible: boolean; }; MinorTick: { Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; GridLine: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; Step: number; Length: number; Visible: boolean; }; Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; LabelFont: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; LabelsGap: number; LabelFormat: string; Labels: string[]; LabelsInside: boolean; LabelsAtBottom: boolean; LabelsVisible: boolean; Scale: number; DisplayScale: boolean; Visible: boolean; StaggerLabels: boolean; }[]; WallRanges: { AdjacentAxes: string[]; PrimaryAxis: string; DrawOnTopOfGridLines: boolean; StartValue: number; EndValue: number; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Border: { Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; }[]; SwapAxesDirection: boolean; SeriesLine: { LineColor: string; LineStyle: "None" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; LineWeight: number; }; }[]; Series: { ValueMemberX: string; ValueMembersY: string; Type: "Line" | "Area" | "Scatter" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "StackedBar" | "Doughnut" | "HiLoOpenClose" | "Area3D" | "Bar2D" | "Bar3D" | "Bezier" | "BezierXY" | "BezierXY3D" | "Bezier3D" | "BubbleXY" | "Candle" | "ClusteredBar" | "Doughnut3D" | "Funnel3D" | "Gantt3D" | "HiLo" | "HorizontalBar" | "HorizontalBar3D" | "Kagi" | "Kagi3D" | "Line3D" | "LineXY" | "LineXY3D" | "PlotXY" | "PointAndFigure" | "Pyramid3D" | "Renko" | "Renko3D" | "StackedArea" | "StackedArea3D" | "StackedBar3D" | "StackedArea100Pct" | "StackedArea3D100Pct" | "StackedBar100Pct" | "StackedBar3D100Pct" | "ThreeLineBreak" | "ThreeLineBreak3D" | null; AxisX: string; AxisY: string; ZOrder: number | null; Visible: boolean; ChartArea: string; Legend: string; Properties: { Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; Marker: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Label: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Border: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Format: string; Alignment: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight"; }; LabelDistanceFactor: number; Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; Size: number; Style: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle"; }; Tooltip: { AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; Border: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Format: string; Alignment: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight"; }; Gap: number; ExplodeFactor: number; OutsideLabels: boolean; HoleSize: number; StartAngle: number; Clockwise: boolean; LineBackdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; BorderLine: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; Thickness: number; Width: number; LineJoin: "Round" | "Miter" | "Bevel" | "MiterClipped"; BarType: "Bar" | "Custom" | "Pyramid" | "Cone" | "Cylinder"; BarTopPercent: number; VertexNumber: number; RotationAngle: number; PointBarDepth: number; BodyDownswingBackdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; BodyUpswingBackdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; WickLine: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; BodyWidth: number; CloseLine: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; OpenLine: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; HiLoLine: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; TickLen: number; Shape: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle"; MaxSizeFactor: number; MinValue: number; MaxValue: number; PointGapPct: number; MinPointHeight: number; BaseStyle: "CircularBase" | "SquareBase"; OutsideLabelsPlacement: "Left" | "Right"; FunnelStyle: "YIsWidth" | "YIsHeight"; NeckWidth: number; NeckHeight: number; CalloutLine: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; BoxSize: number; ReversalAmount: number; NewLineBreak: number; UpswingLine: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; DownswingLine: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; Tension: number; Radius: number; }; Points: { DisplayInLegend: boolean | null; IsEmpty: boolean; LegendText: string; XValue: string; YValues: number[]; }[]; Annotations: ({ Type: "Bar"; AnchorPlacement: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight"; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; AnchorPoint: { X: number; Y: number; }; Width: number; Height: number; RotationAngle: number; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Text: string; Name: string; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; } | { Type: "Line"; StartPoint: { X: number; Y: number; }; EndPoint: { X: number; Y: number; }; Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; StartConnection: string; EndConnection: string; StartConnectionIndex: number; EndConnectionIndex: number; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; })[]; ColorPalette: "Default" | "None" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy"; LegendItemsMode: "Auto" | "Points" | "Series"; DisplayInLegend: boolean; LegendText: string; Name: string | null; AntiAliasMode: "None" | "Auto" | "Text" | "Graphics" | "Both"; }[]; Titles: { Text: string; Backdrop: { Style: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern"; Color: string; Gradient: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; Pattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; Color2: string; Picture: string | undefined; PictureAlignment: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched"; Alpha: number; HasTransparancy: boolean; }; Visible: boolean; Docking: "Left" | "Right" | "Top" | "Bottom"; DockArea: string; Border: { Line: { Color: string; Style: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; Weight: number; }; ShadowColor: string; ShadowWeight: number; }; Font: { Color: string; Angle: number; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold" | "Inherit"; FontStyle: "Normal" | "Italic" | "Inherit"; }; Alignment: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight"; Name: string; }[]; AutoRefresh: boolean; ColorPalette: "Default" | "None" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy"; UIOptions: "None" | "ContextCustomize" | "UseCustomTooltips" | "ForceHitTesting"; Culture: string; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Chart"; } & Selectable) | ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; Checked: boolean; Text: string | undefined; CheckAlignment: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight"; PaddingTop: number; PaddingRight: number; PaddingBottom: number; PaddingLeft: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "CheckBox"; } & Selectable) | ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Left: number; Top: number; Right: number; Bottom: number; LineColor: string; LineStyle: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; LineWeight: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "CrossSectionLine"; } & Selectable) | ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; CloseBorder: boolean; BackColor: string; Radius: { Default: number; TopLeft: number | undefined; TopRight: number | undefined; BottomRight: number | undefined; BottomLeft: number | undefined; }; Left: number; Top: number; Right: number; Bottom: number; LineColor: string; LineStyle: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; LineWeight: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "CrossSectionBox"; } & Selectable) | ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; Text: string | undefined; HyperLink: string | undefined; MultiLine: boolean; RightToLeft: boolean; Angle: number; MinCondenseRate: number; CharacterSpacing: number; LineSpacing: number; PaddingTop: number; PaddingRight: number; PaddingBottom: number; PaddingLeft: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Label"; } & Selectable) | ({ X1: number; X2: number; Y1: number; Y2: number; LineColor: string; LineStyle: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; LineWeight: number; AnchorBottom: boolean; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Line"; } & Selectable) | ({ Enabled: boolean; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "PageBreak"; } & Selectable) | ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Image: string | undefined; MimeType: string | undefined; HyperLink: string | undefined; Title: string | undefined; Description: string | undefined; SizeMode: "Clip" | "Stretch" | "Zoom"; PictureAlignment: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight"; BackColor: string; LineColor: string; LineStyle: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; LineWeight: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Picture"; } & Selectable) | ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; FormatString: string; MultiLine: boolean; CanGrow: boolean; CanShrink: boolean; RightToLeft: boolean; SummaryRunning: "None" | "Group" | "All"; SummaryGroup: string; Culture: string; Calendar: string; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "ReportInfo"; } & Selectable) | ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; AutoReplaceFields: boolean; BackColor: string; CanGrow: boolean; CanShrink: boolean; MaxLength: number; MultiLine: boolean; RtfRenderingType: "RTF" | "Metafile" | "PNG" | "TransparentPNG"; ContentType: "Text" | "Html" | "Rtf"; Data: string | undefined; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "RichTextBox"; } & Selectable) | ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Shape: "Rectangle" | "RoundRect" | "Ellipse"; BackColor: string; BackColor2: string; BackgroundStyle: "Solid" | "Gradient" | "Pattern"; GradientStyle: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner"; BackgroundPattern: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond"; LineColor: string; LineStyle: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent"; LineWeight: number; Radius: { Default: number; TopLeft: number | undefined; TopRight: number | undefined; BottomRight: number | undefined; BottomLeft: number | undefined; }; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Shape"; } & Selectable) | ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; ReportName: string; CanGrow: boolean; CanShrink: boolean; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "SubReport"; } & Selectable) | ({ Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; Style: { ClassName: string; Parent: string | undefined; ForeColor: string | undefined; BackColor: string | undefined; FontFamily: string | undefined; FontSize: string | undefined; FontWeight: "Normal" | "Bold" | undefined; FontStyle: "Normal" | "Italic" | undefined; VerticalText: boolean | undefined; DdoCharSet: string | undefined; TextAlign: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline: boolean | undefined; FontLinethrough: boolean | undefined; VerticalAlign: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit: boolean | undefined; Kinsoku: "None" | "Auto" | "True" | undefined; }; Text: string | undefined; HyperLink: string | undefined; OutputFormat: string | undefined; Culture: string | undefined; CurrencyCulture: string | undefined; Calendar: string | undefined; MultiLine: boolean; CanGrow: boolean; CanShrink: boolean; RightToLeft: boolean; SummaryType: "None" | "GrandTotal" | "PageTotal" | "SubTotal" | "PageCount"; SummaryFunc: "Count" | "Max" | "Min" | "Sum" | "Avg" | "Var" | "VarP" | "StdDev" | "StdDevP" | "DSum" | "DAvg" | "DCount" | "DVar" | "DVarP" | "DStdDev" | "DStdDevP"; SummaryRunning: "None" | "Group" | "All"; SummaryGroup: string | undefined; DistinctField: string | undefined; CountNullValues: boolean; CharacterSpacing: number; MinCondenseRate: number; LineSpacing: number; PaddingTop: number; PaddingRight: number; PaddingBottom: number; PaddingLeft: number; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "TextBox"; } & Selectable) | ({ Item: any; } & { Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Unknown"; } & Selectable) | ({ OutputFormat: string; Text: string; MaxLength: unknown; MultiLine: boolean; Password: boolean; SpellCheck: boolean; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold"; FontStyle: "Normal" | "Italic"; Alignment: "Center" | "Left" | "Right"; FontUnderline: boolean; FontLinethrough: boolean; BackColor: string; BorderColor: string; BorderStyle: "None" | "Dashed" | "Solid" | "Inset"; BorderWidth: number; ForeColor: string; FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "InputFieldText"; } & Selectable) | ({ CheckSize: number; Checked: boolean; CheckStyle: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star"; BackColor: string; BorderColor: string; BorderStyle: "None" | "Dashed" | "Solid" | "Inset"; BorderWidth: number; ForeColor: string; FieldName: string; Readonly: boolean; Required: boolean; TabIndex: number | null; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "InputFieldCheckBox"; } & Selectable) | { Symbology: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | "Code25mat"; Border: { BottomColor: string; LeftColor: string; RightColor: string; TopColor: string; BottomStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; }; FontFamily: string; FontSize: string; FontWeight: "Normal" | "Bold"; FontStyle: "Normal" | "Italic"; FontUnderline: boolean; FontLinethrough: boolean; BackColor: string; ForeColor: string; BarWidth: number; BarHeight: number; SupplementBarHeight: number; Alignment: "Center" | "Near" | "Far"; Text: string; SupplementText: string; CaptionGrouping: boolean; CaptionPosition: "None" | "Above" | "Below"; SupplementCaptionPosition: "None" | "Above" | "Below"; Rotation: "None" | "Rotate90Degrees" | "Rotate180Degrees" | "Rotate270Degrees"; AutoSize: boolean; CheckSumEnabled: boolean; QuietZoneLeft: number; QuietZoneRight: number; QuietZoneTop: number; QuietZoneBottom: number; NWRatio: number; SupplementDataField: string; SupplementSpacing: number; ValueBinary: string | undefined; AztecOptions: { ErrorCorrection: number; Layers: number; Encoding: string; }; Code128Options: { Dpi: number; BarAdjust: number; ModuleSize: number; }; Code49Options: { Grouping: boolean; Group: number; }; DataMatrixOptions: { EccMode: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140"; Ecc200SymbolSize: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48"; Ecc200EncodingMode: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256"; Ecc000_140SymbolSize: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49"; StructuredAppend: boolean; StructureNumber: number; FileIdentifier: number; Encoding: string; }; Gs1CompositeOptions: { Type: "None" | "CCA"; Value: string; }; MaxiCodeOptions: { Mode: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6"; }; MicroPdf417Options: { CompactionMode: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode"; FileID: number; SegmentCount: number; SegmentIndex: number; Version: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44"; }; MicroQrCodeOptions: { Encoding: string; ErrorLevel: "Q" | "L" | "M"; Mask: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11"; Version: "Auto" | "M1" | "M2" | "M3" | "M4"; }; Pdf417Options: { Column: number; Row: number; ErrorLevel: number; Type: "Normal" | "Simple"; }; QrCodeOptions: { Connection: boolean; ConnectionNumber: number; Encoding: string; ErrorLevel: "Q" | "L" | "M" | "H"; Mask: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111"; Model: "Model2" | "Model1"; Version: number; }; RssExpandedStacked: { RowCount: number; }; Left: number; Top: number; Width: number; Height: number; Name: string; Visible: boolean; DataField: string | undefined; Tag: string | undefined; Type: "Barcode"; $path: string; $selected?: "leaf" | "partial" | undefined; $primary?: boolean | undefined; }>; /** exported only for unit tests */ declare const SectionDecoder: (generateId: (target?: any) => string) => Decoder$1<{ Type?: "PageHeader" | "ReportHeader" | "ReportFooter" | "PageFooter" | "Detail" | "GroupHeader" | "GroupFooter" | undefined; Name?: string | undefined; Controls?: ({ Name: string; Type?: "Barcode" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | "Code25mat" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; BarWidth?: number | undefined; BarHeight?: number | undefined; SupplementBarHeight?: number | undefined; Alignment?: "Center" | "Near" | "Far" | undefined; SupplementText?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionPosition?: "None" | "Above" | "Below" | undefined; SupplementCaptionPosition?: "None" | "Above" | "Below" | undefined; Rotation?: "None" | "Rotate90Degrees" | "Rotate180Degrees" | "Rotate270Degrees" | undefined; AutoSize?: boolean | undefined; CheckSumEnabled?: boolean | undefined; QuietZoneLeft?: number | undefined; QuietZoneRight?: number | undefined; QuietZoneTop?: number | undefined; QuietZoneBottom?: number | undefined; NWRatio?: number | undefined; SupplementDataField?: string | undefined; SupplementSpacing?: number | undefined; ValueBinary?: string | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code128Options?: { Dpi?: number | undefined; BarAdjust?: number | undefined; ModuleSize?: number | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; Group?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Gs1CompositeOptions?: { Type?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; FileID?: number | undefined; SegmentCount?: number | undefined; SegmentIndex?: number | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; } | undefined; MicroQrCodeOptions?: { Encoding?: string | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; } | undefined; Pdf417Options?: { Column?: number | undefined; Row?: number | undefined; ErrorLevel?: number | undefined; Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Encoding?: string | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Version?: number | undefined; } | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; } | { BlackAndWhiteMode?: boolean | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; ChartBorder?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; GridLayout?: { Rows?: number | undefined; Columns?: number | undefined; } | undefined; Legends?: ({ Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Visible?: boolean | undefined; Header?: { Text?: string | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Name?: string | undefined; } | undefined; Footer?: { Text?: string | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Name?: string | undefined; } | undefined; LabelsFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; LegendItems?: ({ Text?: string | undefined; Style?: "None" | "Bar" | "Line" | "Area" | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Marker?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Label?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; } | undefined; LabelDistanceFactor?: number | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Size?: number | undefined; Style?: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle" | undefined; } | undefined; } | undefined)[] | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "TopLegt" | undefined; MarginX?: number | undefined; MarginY?: number | undefined; DockArea?: string | undefined; DockInsideArea?: boolean | undefined; GridLayout?: { Rows?: number | undefined; Columns?: number | undefined; } | undefined; } | undefined)[] | undefined; ChartAreas?: ({ Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Padding?: { Top?: number | undefined; Right?: number | undefined; Bottom?: number | undefined; Left?: number | undefined; } | undefined; ZDepthRatio?: number | undefined; WallXZ?: { Width?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; WallXY?: { Width?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; WallYZ?: { Width?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; Projection?: { ProjectionType?: "Perspective" | "Identical" | "Orthogonal" | undefined; ProjectionDX?: number | undefined; ProjectionDY?: number | undefined; HorizontalRotation?: number | undefined; VerticalRotation?: number | undefined; } | undefined; Light?: { Type?: "Ambient" | "InfiniteDirectional" | "FiniteDirectional" | undefined; Source?: { X?: number | undefined; Y?: number | undefined; Z?: number | undefined; } | undefined; DirectionalRatio?: number | undefined; } | undefined; Axes?: ({ Name?: string | undefined; Kind?: "Axis" | "CustomAxis" | undefined; TickOffset?: number | undefined; Position?: number | undefined; SmartLabels?: boolean | undefined; Arrow?: "None" | "Triangle" | "Lines" | undefined; AxisType?: "Logarithmic" | "Categorical" | "Numerical" | undefined; Min?: number | undefined; Max?: number | undefined; Title?: string | undefined; TitleFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; MajorTick?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; GridLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Step?: number | undefined; Length?: number | undefined; Visible?: boolean | undefined; } | undefined; MinorTick?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; GridLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Step?: number | undefined; Length?: number | undefined; Visible?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; LabelFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; LabelsGap?: number | undefined; LabelFormat?: string | undefined; Labels?: string[] | undefined; LabelsInside?: boolean | undefined; LabelsAtBottom?: boolean | undefined; LabelsVisible?: boolean | undefined; Scale?: number | undefined; DisplayScale?: boolean | undefined; Visible?: boolean | undefined; StaggerLabels?: boolean | undefined; } | undefined)[] | undefined; WallRanges?: ({ AdjacentAxes?: (string | undefined)[] | undefined; PrimaryAxis?: string | undefined; DrawOnTopOfGridLines?: boolean | undefined; StartValue?: number | undefined; EndValue?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; } | undefined)[] | undefined; SwapAxesDirection?: boolean | undefined; SeriesLine?: { LineColor?: string | undefined; LineStyle?: "None" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; } | undefined; } | undefined)[] | undefined; Series?: { ValueMemberX?: string | undefined; ValueMembersY?: string | undefined; Type?: "Line" | "Area" | "Scatter" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "StackedBar" | "Doughnut" | "HiLoOpenClose" | "Area3D" | "Bar2D" | "Bar3D" | "Bezier" | "BezierXY" | "BezierXY3D" | "Bezier3D" | "BubbleXY" | "Candle" | "ClusteredBar" | "Doughnut3D" | "Funnel3D" | "Gantt3D" | "HiLo" | "HorizontalBar" | "HorizontalBar3D" | "Kagi" | "Kagi3D" | "Line3D" | "LineXY" | "LineXY3D" | "PlotXY" | "PointAndFigure" | "Pyramid3D" | "Renko" | "Renko3D" | "StackedArea" | "StackedArea3D" | "StackedBar3D" | "StackedArea100Pct" | "StackedArea3D100Pct" | "StackedBar100Pct" | "StackedBar3D100Pct" | "ThreeLineBreak" | "ThreeLineBreak3D" | null | undefined; AxisX?: string | undefined; AxisY?: string | undefined; ZOrder?: number | undefined; Visible?: boolean | undefined; ChartArea?: string | undefined; Legend?: string | undefined; Properties?: { Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Marker?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Label?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; } | undefined; LabelDistanceFactor?: number | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Size?: number | undefined; Style?: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle" | undefined; } | undefined; Tooltip?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; } | undefined; Gap?: number | undefined; ExplodeFactor?: number | undefined; OutsideLabels?: boolean | undefined; HoleSize?: number | undefined; StartAngle?: number | undefined; Clockwise?: boolean | undefined; LineBackdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; BorderLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Thickness?: number | undefined; Width?: number | undefined; LineJoin?: "Round" | "Miter" | "Bevel" | "MiterClipped" | undefined; BarType?: "Bar" | "Custom" | "Pyramid" | "Cone" | "Cylinder" | undefined; BarTopPercent?: number | undefined; VertexNumber?: number | undefined; RotationAngle?: number | undefined; PointBarDepth?: number | undefined; BodyDownswingBackdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; BodyUpswingBackdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; WickLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; BodyWidth?: number | undefined; CloseLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; OpenLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; HiLoLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; TickLen?: number | undefined; Shape?: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle" | undefined; MaxSizeFactor?: number | undefined; MinValue?: number | undefined; MaxValue?: number | undefined; PointGapPct?: number | undefined; MinPointHeight?: number | undefined; BaseStyle?: "CircularBase" | "SquareBase" | undefined; OutsideLabelsPlacement?: "Left" | "Right" | undefined; FunnelStyle?: "YIsWidth" | "YIsHeight" | undefined; NeckWidth?: number | undefined; NeckHeight?: number | undefined; CalloutLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; BoxSize?: number | undefined; ReversalAmount?: number | undefined; NewLineBreak?: number | undefined; UpswingLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; DownswingLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Tension?: number | undefined; Radius?: number | undefined; } | undefined; Points?: ({ DisplayInLegend?: boolean | undefined; IsEmpty?: boolean | undefined; LegendText?: string | undefined; XValue?: string | undefined; YValues?: number[] | undefined; } | undefined)[] | undefined; Annotations?: ({ Type?: "Bar" | undefined; AnchorPlacement?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; AnchorPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; RotationAngle?: number | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Text?: string | undefined; Name?: string | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | { Type?: "Line" | undefined; StartPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; EndPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; StartConnection?: string | undefined; EndConnection?: string | undefined; StartConnectionIndex?: number | undefined; EndConnectionIndex?: number | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined)[] | undefined; ColorPalette?: "Default" | "None" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy" | undefined; LegendItemsMode?: "Auto" | "Points" | "Series" | undefined; DisplayInLegend?: boolean | undefined; LegendText?: string | undefined; Name?: string | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; }[] | undefined; Titles?: ({ Text?: string | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Name?: string | undefined; } | undefined)[] | undefined; AutoRefresh?: boolean | undefined; ColorPalette?: "Default" | "None" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy" | undefined; UIOptions?: "None" | "ContextCustomize" | "UseCustomTooltips" | "ForceHitTesting" | undefined; Culture?: string | undefined; Left?: number | undefined; Top?: number | undefined; Width?: number | undefined; Height?: number | undefined; Name?: string | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Type?: "Chart" | undefined; } | { Name: string; Type?: "CheckBox" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Checked?: boolean | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; } | { Name: string; Type?: "CrossSectionLine" | undefined; Left?: number | undefined; Right?: number | undefined; Top?: number | undefined; Bottom?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; } | { Name: string; Type?: "CrossSectionBox" | undefined; Left?: number | undefined; Right?: number | undefined; Top?: number | undefined; Bottom?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; Radius?: { Default?: number | undefined; TopLeft?: number | undefined; TopRight?: number | undefined; BottomRight?: number | undefined; BottomLeft?: number | undefined; } | undefined; CloseBorder?: boolean | undefined; } | { Name: string; Type?: "Label" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Angle?: number | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; HyperLink?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; MinCondenseRate?: number | undefined; CharacterSpacing?: number | undefined; LineSpacing?: number | undefined; } | { Name: string; Type?: "Line" | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; X1?: number | undefined; X2?: number | undefined; Y1?: number | undefined; Y2?: number | undefined; AnchorBottom?: boolean | undefined; } | { Name: string; Type?: "PageBreak" | undefined; Left?: number | undefined; Top?: number | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Enabled?: boolean | undefined; } | { Name: string; Type?: "Picture" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; PictureAlignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Title?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; HyperLink?: string | undefined; Image?: string | undefined; MimeType?: string | undefined; Description?: string | undefined; SizeMode?: "Clip" | "Stretch" | "Zoom" | undefined; } | { Name: string; Type?: "ReportInfo" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Culture?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; FormatString?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; SummaryRunning?: "None" | "Group" | "All" | undefined; SummaryGroup?: string | undefined; Calendar?: string | undefined; } | { Name: string; Type?: "RichTextBox" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; MultiLine?: boolean | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; AutoReplaceFields?: boolean | undefined; MaxLength?: number | undefined; RtfRenderingType?: "RTF" | "Metafile" | "PNG" | "TransparentPNG" | undefined; ContentType?: "Text" | "Html" | "Rtf" | undefined; Data?: string | undefined; } | { Name: string; Type?: "Shape" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; Shape?: "Rectangle" | "RoundRect" | "Ellipse" | undefined; Radius?: { Default?: number | undefined; TopLeft?: number | undefined; TopRight?: number | undefined; BottomRight?: number | undefined; BottomLeft?: number | undefined; } | undefined; BackColor2?: string | undefined; BackgroundStyle?: "Solid" | "Gradient" | "Pattern" | undefined; GradientStyle?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; BackgroundPattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; } | { Name: string; Type?: "SubReport" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; ReportName?: string | undefined; } | { Name: string; Type?: "TextBox" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Culture?: string | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; HyperLink?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; MinCondenseRate?: number | undefined; CharacterSpacing?: number | undefined; LineSpacing?: number | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; SummaryRunning?: "None" | "Group" | "All" | undefined; SummaryGroup?: string | undefined; Calendar?: string | undefined; OutputFormat?: string | undefined; CurrencyCulture?: string | undefined; SummaryType?: "None" | "GrandTotal" | "PageTotal" | "SubTotal" | "PageCount" | undefined; SummaryFunc?: "Count" | "Max" | "Min" | "Sum" | "Avg" | "Var" | "VarP" | "StdDev" | "StdDevP" | "DSum" | "DAvg" | "DCount" | "DVar" | "DVarP" | "DStdDev" | "DStdDevP" | undefined; DistinctField?: string | undefined; CountNullValues?: boolean | undefined; } | { [x: string]: any; [x: number]: any; [x: symbol]: any; Name: any; } | { Name: string; Type?: "InputFieldText" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; Alignment?: "Center" | "Left" | "Right" | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; MultiLine?: boolean | undefined; MaxLength?: unknown; OutputFormat?: string | undefined; Password?: boolean | undefined; SpellCheck?: boolean | undefined; BorderColor?: string | undefined; BorderStyle?: "None" | "Dashed" | "Solid" | "Inset" | undefined; BorderWidth?: number | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } | { Name: string; Type?: "InputFieldCheckBox" | undefined; Left?: number | undefined; Top?: number | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Checked?: boolean | undefined; BorderColor?: string | undefined; BorderStyle?: "None" | "Dashed" | "Solid" | "Inset" | undefined; BorderWidth?: number | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; CheckSize?: number | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; })[] | undefined; Height?: number | undefined; BackColor?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; KeepTogether?: boolean | undefined; NewPage?: "None" | "Before" | "After" | "BeforeAfter" | undefined; NewColumn?: "None" | "Before" | "After" | "BeforeAfter" | undefined; PrintAtBottom?: boolean | undefined; Tag?: string | undefined; UnderlayNext?: boolean | undefined; Visible?: boolean | undefined; ColumnCount?: number | undefined; ColumnDirection?: "DownAcross" | "AcrossDown" | undefined; ColumnSpacing?: number | undefined; RepeatToFill?: boolean | undefined; DataField?: string | undefined; GroupKeepTogether?: "None" | "All" | "FirstDetail" | undefined; ColKeepTogether?: boolean | undefined; RepeatStyle?: "None" | "All" | "OnPage" | "OnColumn" | "OnPageIncludeNoDetail" | undefined; ColumnLayout?: boolean | undefined; }, { $path: string; Controls: Record; Type: "PageHeader" | "ReportHeader" | "ReportFooter" | "PageFooter" | "Detail" | "GroupHeader" | "GroupFooter"; Name: string; Height: number; BackColor: string; CanGrow: boolean; CanShrink: boolean; KeepTogether: boolean; NewPage: "None" | "Before" | "After" | "BeforeAfter"; NewColumn: "None" | "Before" | "After" | "BeforeAfter"; PrintAtBottom: boolean; Tag: string | undefined; UnderlayNext: boolean; Visible: boolean; ColumnCount: number; ColumnDirection: "DownAcross" | "AcrossDown"; ColumnSpacing: number; RepeatToFill: boolean; DataField: string | undefined; GroupKeepTogether: "None" | "All" | "FirstDetail"; ColKeepTogether: boolean; RepeatStyle: "None" | "All" | "OnPage" | "OnColumn" | "OnPageIncludeNoDetail"; ColumnLayout: boolean; $selected?: "leaf" | "partial" | undefined; $primary?: boolean | undefined; $pasteId?: string | undefined; $pasteCount?: number | undefined; }>; type SelectableControl = TypeOf$1; type SelectableSection = Omit & { Controls: Record; } & Selectable; type SelectableReport = Omit & { Type: 'Report'; Name: string; Sections: Record; GroupsOrder: string[]; Fields: CalculatedField[]; } & Selectable; /** exported only for unit tests */ declare const ReportDecoder: (generateId: (target?: any) => string) => Decoder$1<{ Version?: "1.7.66" | undefined; CompatibilityMode?: "GDI" | "CrossPlatform" | undefined; ExpressionErrorMessage?: string | undefined; Culture?: string | undefined; PrintWidth?: number | undefined; MaxPages?: number | undefined; DocumentName?: string | undefined; ScriptLanguage?: "C#" | "VB.NET" | undefined; ParamUI?: boolean | undefined; MasterReport?: string | undefined; ReportServerUri?: string | undefined; UserData?: string | undefined; StyleSheet?: ({ ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; /** exported only for unit tests */ ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined)[] | undefined; Sections?: { Type?: "PageHeader" | "ReportHeader" | "ReportFooter" | "PageFooter" | "Detail" | "GroupHeader" | "GroupFooter" | undefined; Name?: string | undefined; Controls?: ({ Name: string; Type?: "Barcode" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: "None" | "Ansi39" | "Ansi39x" | "Aztec" | "BC412" | "Codabar" | "Code_11" | "Code_128_A" | "Code_128_B" | "Code_128_C" | "Code_128auto" | "Code_2_of_5" | "Code_93" | "Code25intlv" | "Code39" | "Code39x" | "Code49" | "Code93x" | "DataMatrix" | "EAN_13" | "EAN_8" | "EAN128FNC1" | "GS1DataMatrix" | "GS1QRCode" | "HIBCCode128" | "HIBCCode39" | "IATA_2_of_5" | "IntelligentMail" | "IntelligentMailPackage" | "ISBN" | "ISMN" | "ISSN" | "ITF14" | "JapanesePostal" | "Matrix_2_of_5" | "MaxiCode" | "MicroPDF417" | "MicroQRCode" | "MSI" | "Pdf417" | "Pharmacode" | "Plessey" | "PostNet" | "PZN" | "QRCode" | "RM4SCC" | "RSS14" | "RSS14Stacked" | "RSS14StackedOmnidirectional" | "RSS14Truncated" | "RSSExpanded" | "RSSExpandedStacked" | "RSSLimited" | "SSCC_18" | "Telepen" | "UCCEAN128" | "UPC_A" | "UPC_E0" | "UPC_E1" | "Code25mat" | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; BarWidth?: number | undefined; BarHeight?: number | undefined; SupplementBarHeight?: number | undefined; Alignment?: "Center" | "Near" | "Far" | undefined; SupplementText?: string | undefined; CaptionGrouping?: boolean | undefined; CaptionPosition?: "None" | "Above" | "Below" | undefined; SupplementCaptionPosition?: "None" | "Above" | "Below" | undefined; Rotation?: "None" | "Rotate90Degrees" | "Rotate180Degrees" | "Rotate270Degrees" | undefined; AutoSize?: boolean | undefined; CheckSumEnabled?: boolean | undefined; QuietZoneLeft?: number | undefined; QuietZoneRight?: number | undefined; QuietZoneTop?: number | undefined; QuietZoneBottom?: number | undefined; NWRatio?: number | undefined; SupplementDataField?: string | undefined; SupplementSpacing?: number | undefined; ValueBinary?: string | undefined; AztecOptions?: { ErrorCorrection?: number | undefined; Layers?: number | undefined; Encoding?: string | undefined; } | undefined; Code128Options?: { Dpi?: number | undefined; BarAdjust?: number | undefined; ModuleSize?: number | undefined; } | undefined; Code49Options?: { Grouping?: boolean | undefined; Group?: number | undefined; } | undefined; DataMatrixOptions?: { EccMode?: "ECC200" | "ECC000" | "ECC050" | "ECC080" | "ECC100" | "ECC140" | undefined; Ecc200SymbolSize?: "SquareAuto" | "RectangularAuto" | "Square10" | "Square12" | "Square14" | "Square16" | "Square18" | "Square20" | "Square22" | "Square24" | "Square26" | "Square32" | "Square36" | "Square40" | "Square44" | "Square48" | "Square52" | "Square64" | "Square72" | "Square80" | "Square88" | "Square96" | "Square104" | "Square120" | "Square132" | "Square144" | "Rectangular8x18" | "Rectangular8x32" | "Rectangular12x26" | "Rectangular12x36" | "Rectangular16x36" | "Rectangular16x48" | undefined; Ecc200EncodingMode?: "Auto" | "Text" | "ASCII" | "C40" | "X12" | "EDIFACT" | "Base256" | undefined; Ecc000_140SymbolSize?: "Auto" | "Square9" | "Square11" | "Square13" | "Square15" | "Square17" | "Square19" | "Square21" | "Square23" | "Square25" | "Square27" | "Square29" | "Square31" | "Square33" | "Square35" | "Square37" | "Square39" | "Square41" | "Square43" | "Square45" | "Square47" | "Square49" | undefined; StructuredAppend?: boolean | undefined; StructureNumber?: number | undefined; FileIdentifier?: number | undefined; Encoding?: string | undefined; } | undefined; Gs1CompositeOptions?: { Type?: "None" | "CCA" | undefined; Value?: string | undefined; } | undefined; MaxiCodeOptions?: { Mode?: "Mode4" | "Mode2" | "Mode3" | "Mode5" | "Mode6" | undefined; } | undefined; MicroPdf417Options?: { CompactionMode?: "Auto" | "TextCompactionMode" | "NumericCompactionMode" | "ByteCompactionMode" | undefined; FileID?: number | undefined; SegmentCount?: number | undefined; SegmentIndex?: number | undefined; Version?: "ColumnPriorAuto" | "RowPriorAuto" | "Version1X11" | "Version1X14" | "Version1X17" | "Version1X20" | "Version1X24" | "Version1X28" | "Version2X8" | "Version2X11" | "Version2X14" | "Version2X17" | "Version2X20" | "Version2X23" | "Version2X26" | "Version3X6" | "Version3X8" | "Version3X10" | "Version3X12" | "Version3X15" | "Version3X20" | "Version3X26" | "Version3X32" | "Version3X38" | "Version3X44" | "Version4X4" | "Version4X6" | "Version4X8" | "Version4X10" | "Version4X12" | "Version4X15" | "Version4X20" | "Version4X26" | "Version4X32" | "Version4X38" | "Version4X44" | undefined; } | undefined; MicroQrCodeOptions?: { Encoding?: string | undefined; ErrorLevel?: "Q" | "L" | "M" | undefined; Mask?: "Auto" | "Mask00" | "Mask01" | "Mask10" | "Mask11" | undefined; Version?: "Auto" | "M1" | "M2" | "M3" | "M4" | undefined; } | undefined; Pdf417Options?: { Column?: number | undefined; Row?: number | undefined; ErrorLevel?: number | undefined; Type?: "Normal" | "Simple" | undefined; } | undefined; QrCodeOptions?: { Connection?: boolean | undefined; ConnectionNumber?: number | undefined; Encoding?: string | undefined; ErrorLevel?: "Q" | "L" | "M" | "H" | undefined; Mask?: "Auto" | "Mask000" | "Mask001" | "Mask010" | "Mask011" | "Mask100" | "Mask101" | "Mask110" | "Mask111" | undefined; Model?: "Model2" | "Model1" | undefined; Version?: number | undefined; } | undefined; RssExpandedStacked?: { RowCount?: number | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; } | { BlackAndWhiteMode?: boolean | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; ChartBorder?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; GridLayout?: { Rows?: number | undefined; Columns?: number | undefined; } | undefined; Legends?: ({ Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Visible?: boolean | undefined; Header?: { Text?: string | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Name?: string | undefined; } | undefined; Footer?: { Text?: string | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Name?: string | undefined; } | undefined; LabelsFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; LegendItems?: ({ Text?: string | undefined; Style?: "None" | "Bar" | "Line" | "Area" | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Marker?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Label?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; } | undefined; LabelDistanceFactor?: number | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Size?: number | undefined; Style?: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle" | undefined; } | undefined; } | undefined)[] | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | "TopLegt" | undefined; MarginX?: number | undefined; MarginY?: number | undefined; DockArea?: string | undefined; DockInsideArea?: boolean | undefined; GridLayout?: { Rows?: number | undefined; Columns?: number | undefined; } | undefined; } | undefined)[] | undefined; ChartAreas?: ({ Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Padding?: { Top?: number | undefined; Right?: number | undefined; Bottom?: number | undefined; Left?: number | undefined; } | undefined; ZDepthRatio?: number | undefined; WallXZ?: { Width?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; WallXY?: { Width?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; WallYZ?: { Width?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined; Projection?: { ProjectionType?: "Perspective" | "Identical" | "Orthogonal" | undefined; ProjectionDX?: number | undefined; ProjectionDY?: number | undefined; HorizontalRotation?: number | undefined; VerticalRotation?: number | undefined; } | undefined; Light?: { Type?: "Ambient" | "InfiniteDirectional" | "FiniteDirectional" | undefined; Source?: { X?: number | undefined; Y?: number | undefined; Z?: number | undefined; } | undefined; DirectionalRatio?: number | undefined; } | undefined; Axes?: ({ Name?: string | undefined; Kind?: "Axis" | "CustomAxis" | undefined; TickOffset?: number | undefined; Position?: number | undefined; SmartLabels?: boolean | undefined; Arrow?: "None" | "Triangle" | "Lines" | undefined; AxisType?: "Logarithmic" | "Categorical" | "Numerical" | undefined; Min?: number | undefined; Max?: number | undefined; Title?: string | undefined; TitleFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; MajorTick?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; GridLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Step?: number | undefined; Length?: number | undefined; Visible?: boolean | undefined; } | undefined; MinorTick?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; GridLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Step?: number | undefined; Length?: number | undefined; Visible?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; LabelFont?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; LabelsGap?: number | undefined; LabelFormat?: string | undefined; Labels?: string[] | undefined; LabelsInside?: boolean | undefined; LabelsAtBottom?: boolean | undefined; LabelsVisible?: boolean | undefined; Scale?: number | undefined; DisplayScale?: boolean | undefined; Visible?: boolean | undefined; StaggerLabels?: boolean | undefined; } | undefined)[] | undefined; WallRanges?: ({ AdjacentAxes?: (string | undefined)[] | undefined; PrimaryAxis?: string | undefined; DrawOnTopOfGridLines?: boolean | undefined; StartValue?: number | undefined; EndValue?: number | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; } | undefined)[] | undefined; SwapAxesDirection?: boolean | undefined; SeriesLine?: { LineColor?: string | undefined; LineStyle?: "None" | "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; } | undefined; } | undefined)[] | undefined; Series?: { ValueMemberX?: string | undefined; ValueMembersY?: string | undefined; Type?: "Line" | "Area" | "Scatter" | "Pyramid" | "Funnel" | "Bubble" | "Gantt" | "StackedBar" | "Doughnut" | "HiLoOpenClose" | "Area3D" | "Bar2D" | "Bar3D" | "Bezier" | "BezierXY" | "BezierXY3D" | "Bezier3D" | "BubbleXY" | "Candle" | "ClusteredBar" | "Doughnut3D" | "Funnel3D" | "Gantt3D" | "HiLo" | "HorizontalBar" | "HorizontalBar3D" | "Kagi" | "Kagi3D" | "Line3D" | "LineXY" | "LineXY3D" | "PlotXY" | "PointAndFigure" | "Pyramid3D" | "Renko" | "Renko3D" | "StackedArea" | "StackedArea3D" | "StackedBar3D" | "StackedArea100Pct" | "StackedArea3D100Pct" | "StackedBar100Pct" | "StackedBar3D100Pct" | "ThreeLineBreak" | "ThreeLineBreak3D" | null | undefined; AxisX?: string | undefined; AxisY?: string | undefined; ZOrder?: number | undefined; Visible?: boolean | undefined; ChartArea?: string | undefined; Legend?: string | undefined; Properties?: { Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Marker?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Label?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; } | undefined; LabelDistanceFactor?: number | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Size?: number | undefined; Style?: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle" | undefined; } | undefined; Tooltip?: { AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; Border?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Format?: string | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; } | undefined; Gap?: number | undefined; ExplodeFactor?: number | undefined; OutsideLabels?: boolean | undefined; HoleSize?: number | undefined; StartAngle?: number | undefined; Clockwise?: boolean | undefined; LineBackdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; BorderLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Thickness?: number | undefined; Width?: number | undefined; LineJoin?: "Round" | "Miter" | "Bevel" | "MiterClipped" | undefined; BarType?: "Bar" | "Custom" | "Pyramid" | "Cone" | "Cylinder" | undefined; BarTopPercent?: number | undefined; VertexNumber?: number | undefined; RotationAngle?: number | undefined; PointBarDepth?: number | undefined; BodyDownswingBackdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; BodyUpswingBackdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; WickLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; BodyWidth?: number | undefined; CloseLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; OpenLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; HiLoLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; TickLen?: number | undefined; Shape?: "None" | "Circle" | "Square" | "Diamond" | "Triangle" | "Pyramid" | "Cross" | "Point" | "InvTriangle" | undefined; MaxSizeFactor?: number | undefined; MinValue?: number | undefined; MaxValue?: number | undefined; PointGapPct?: number | undefined; MinPointHeight?: number | undefined; BaseStyle?: "CircularBase" | "SquareBase" | undefined; OutsideLabelsPlacement?: "Left" | "Right" | undefined; FunnelStyle?: "YIsWidth" | "YIsHeight" | undefined; NeckWidth?: number | undefined; NeckHeight?: number | undefined; CalloutLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; BoxSize?: number | undefined; ReversalAmount?: number | undefined; NewLineBreak?: number | undefined; UpswingLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; DownswingLine?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; Tension?: number | undefined; Radius?: number | undefined; } | undefined; Points?: ({ DisplayInLegend?: boolean | undefined; IsEmpty?: boolean | undefined; LegendText?: string | undefined; XValue?: string | undefined; YValues?: number[] | undefined; } | undefined)[] | undefined; Annotations?: ({ Type?: "Bar" | undefined; AnchorPlacement?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; AnchorPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; RotationAngle?: number | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Text?: string | undefined; Name?: string | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | { Type?: "Line" | undefined; StartPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; EndPoint?: { X?: number | undefined; Y?: number | undefined; } | undefined; Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; StartConnection?: string | undefined; EndConnection?: string | undefined; StartConnectionIndex?: number | undefined; EndConnectionIndex?: number | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; } | undefined)[] | undefined; ColorPalette?: "Default" | "None" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy" | undefined; LegendItemsMode?: "Auto" | "Points" | "Series" | undefined; DisplayInLegend?: boolean | undefined; LegendText?: string | undefined; Name?: string | undefined; AntiAliasMode?: "None" | "Auto" | "Text" | "Graphics" | "Both" | undefined; }[] | undefined; Titles?: ({ Text?: string | undefined; Backdrop?: { Style?: "Solid" | "Picture" | "Transparent" | "Gradient" | "Pattern" | undefined; Color?: string | undefined; Gradient?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; Pattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; Color2?: string | undefined; Picture?: string | undefined; PictureAlignment?: "Left" | "Right" | "Top" | "Bottom" | "Streched" | "Tiled" | "Centered" | "Stretched" | undefined; Alpha?: number | undefined; HasTransparancy?: boolean | undefined; } | undefined; Visible?: boolean | undefined; Docking?: "Left" | "Right" | "Top" | "Bottom" | undefined; DockArea?: string | undefined; Border?: { Line?: { Color?: string | undefined; Style?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; Weight?: number | undefined; } | undefined; ShadowColor?: string | undefined; ShadowWeight?: number | undefined; } | undefined; Font?: { Color?: string | undefined; Angle?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | "Inherit" | undefined; FontStyle?: "Normal" | "Italic" | "Inherit" | undefined; } | undefined; Alignment?: "Center" | "Left" | "Right" | "Top" | "Bottom" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Name?: string | undefined; } | undefined)[] | undefined; AutoRefresh?: boolean | undefined; ColorPalette?: "Default" | "None" | "Cascade" | "Springtime" | "Iceburg" | "Iceberg" | "Confetti" | "Greens" | "Berries" | "Autumn" | "Murphy" | undefined; UIOptions?: "None" | "ContextCustomize" | "UseCustomTooltips" | "ForceHitTesting" | undefined; Culture?: string | undefined; Left?: number | undefined; Top?: number | undefined; Width?: number | undefined; Height?: number | undefined; Name?: string | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Type?: "Chart" | undefined; } | { Name: string; Type?: "CheckBox" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Checked?: boolean | undefined; CheckAlignment?: "MiddleLeft" | "TopLeft" | "TopCenter" | "TopRight" | "MiddleCenter" | "MiddleRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; } | { Name: string; Type?: "CrossSectionLine" | undefined; Left?: number | undefined; Right?: number | undefined; Top?: number | undefined; Bottom?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; } | { Name: string; Type?: "CrossSectionBox" | undefined; Left?: number | undefined; Right?: number | undefined; Top?: number | undefined; Bottom?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; Radius?: { Default?: number | undefined; TopLeft?: number | undefined; TopRight?: number | undefined; BottomRight?: number | undefined; BottomLeft?: number | undefined; } | undefined; CloseBorder?: boolean | undefined; } | { Name: string; Type?: "Label" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Angle?: number | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; HyperLink?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; MinCondenseRate?: number | undefined; CharacterSpacing?: number | undefined; LineSpacing?: number | undefined; } | { Name: string; Type?: "Line" | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; X1?: number | undefined; X2?: number | undefined; Y1?: number | undefined; Y2?: number | undefined; AnchorBottom?: boolean | undefined; } | { Name: string; Type?: "PageBreak" | undefined; Left?: number | undefined; Top?: number | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Enabled?: boolean | undefined; } | { Name: string; Type?: "Picture" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; PictureAlignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; Title?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; HyperLink?: string | undefined; Image?: string | undefined; MimeType?: string | undefined; Description?: string | undefined; SizeMode?: "Clip" | "Stretch" | "Zoom" | undefined; } | { Name: string; Type?: "ReportInfo" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Culture?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; FormatString?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; SummaryRunning?: "None" | "Group" | "All" | undefined; SummaryGroup?: string | undefined; Calendar?: string | undefined; } | { Name: string; Type?: "RichTextBox" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; MultiLine?: boolean | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; AutoReplaceFields?: boolean | undefined; MaxLength?: number | undefined; RtfRenderingType?: "RTF" | "Metafile" | "PNG" | "TransparentPNG" | undefined; ContentType?: "Text" | "Html" | "Rtf" | undefined; Data?: string | undefined; } | { Name: string; Type?: "Shape" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; BackColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; LineColor?: string | undefined; LineStyle?: "Solid" | "Double" | "DashDot" | "DashDotDot" | "Dot" | "Dash" | "Transparent" | undefined; LineWeight?: number | undefined; Shape?: "Rectangle" | "RoundRect" | "Ellipse" | undefined; Radius?: { Default?: number | undefined; TopLeft?: number | undefined; TopRight?: number | undefined; BottomRight?: number | undefined; BottomLeft?: number | undefined; } | undefined; BackColor2?: string | undefined; BackgroundStyle?: "Solid" | "Gradient" | "Pattern" | undefined; GradientStyle?: "Horizontal" | "Vertical" | "DiagonalUp" | "DiagonalDown" | "FromCenter" | "FromCorner" | undefined; BackgroundPattern?: "Max" | "Min" | "Horizontal" | "Vertical" | "Cross" | "ForwardDiagonal" | "BackwardDiagonal" | "LargeGrid" | "DiagonalCross" | "Percent05" | "Percent10" | "Percent20" | "Percent25" | "Percent30" | "Percent40" | "Percent50" | "Percent60" | "Percent70" | "Percent75" | "Percent80" | "Percent90" | "LightDownwardDiagonal" | "LightUpwardDiagonal" | "DarkDownwardDiagonal" | "DarkUpwardDiagonal" | "WideDownwardDiagonal" | "WideUpwardDiagonal" | "LightVertical" | "LightHorizontal" | "NarrowVertical" | "NarrowHorizontal" | "DarkVertical" | "DarkHorizontal" | "DashedDownwardDiagonal" | "DashedUpwardDiagonal" | "DashedHorizontal" | "DashedVertical" | "SmallConfetti" | "LargeConfetti" | "ZigZag" | "Wave" | "DiagonalBrick" | "HorizontalBrick" | "Weave" | "Plaid" | "Divot" | "DottedGrid" | "DottedDiamond" | "Shingle" | "Trellis" | "Sphere" | "SmallGrid" | "SmallCheckerBoard" | "LargeCheckerBoard" | "OutlinedDiamond" | "SolidDiamond" | undefined; } | { Name: string; Type?: "SubReport" | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; ReportName?: string | undefined; } | { Name: string; Type?: "TextBox" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; Border?: { BottomColor?: string | undefined; LeftColor?: string | undefined; RightColor?: string | undefined; TopColor?: string | undefined; BottomStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; LeftStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; RightStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; TopStyle?: "None" | "Solid" | "Double" | "DashDot" | "Dot" | "Dash" | "ThickSolid" | "ThickDashDotDot" | "ThickDash" | "ThickDashDot" | "ThickDot" | "ExtraThickSolid" | "ThickDouble" | undefined; } | undefined; Style?: { ClassName?: string | undefined; Parent?: string | undefined; ForeColor?: string | undefined; BackColor?: string | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; VerticalText?: boolean | undefined; DdoCharSet?: string | undefined; TextAlign?: "Center" | "Left" | "Right" | "Justify" | undefined; TextJustify?: "Auto" | "Distribute" | "Distribute_all_lines" | "Inter_word" | "Inter_ideograph" | "Newspaper" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; VerticalAlign?: "Top" | "Middle" | "Bottom" | "Super" | "BaseLine" | "Sub" | "TextTop" | "TextBottom" | undefined; WhiteSpace?: "Normal" | "NoWrap" | "Pre" | undefined; WordWrap?: "NoWrap" | "CharWrap" | "WordWrap" | undefined; ShrinkToFit?: boolean | undefined; Kinsoku?: "None" | "Auto" | "True" | undefined; } | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Culture?: string | undefined; PaddingTop?: number | undefined; PaddingRight?: number | undefined; PaddingBottom?: number | undefined; PaddingLeft?: number | undefined; HyperLink?: string | undefined; MultiLine?: boolean | undefined; RightToLeft?: boolean | undefined; MinCondenseRate?: number | undefined; CharacterSpacing?: number | undefined; LineSpacing?: number | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; SummaryRunning?: "None" | "Group" | "All" | undefined; SummaryGroup?: string | undefined; Calendar?: string | undefined; OutputFormat?: string | undefined; CurrencyCulture?: string | undefined; SummaryType?: "None" | "GrandTotal" | "PageTotal" | "SubTotal" | "PageCount" | undefined; SummaryFunc?: "Count" | "Max" | "Min" | "Sum" | "Avg" | "Var" | "VarP" | "StdDev" | "StdDevP" | "DSum" | "DAvg" | "DCount" | "DVar" | "DVarP" | "DStdDev" | "DStdDevP" | undefined; DistinctField?: string | undefined; CountNullValues?: boolean | undefined; } | { [x: string]: any; [x: number]: any; [x: symbol]: any; Name: any; } | { Name: string; Type?: "InputFieldText" | undefined; Text?: string | undefined; Left?: number | undefined; Top?: number | undefined; FontFamily?: string | undefined; FontSize?: string | undefined; FontWeight?: "Normal" | "Bold" | undefined; FontStyle?: "Normal" | "Italic" | undefined; FontUnderline?: boolean | undefined; FontLinethrough?: boolean | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; Alignment?: "Center" | "Left" | "Right" | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; MultiLine?: boolean | undefined; MaxLength?: unknown; OutputFormat?: string | undefined; Password?: boolean | undefined; SpellCheck?: boolean | undefined; BorderColor?: string | undefined; BorderStyle?: "None" | "Dashed" | "Solid" | "Inset" | undefined; BorderWidth?: number | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; } | { Name: string; Type?: "InputFieldCheckBox" | undefined; Left?: number | undefined; Top?: number | undefined; BackColor?: string | undefined; ForeColor?: string | undefined; Width?: number | undefined; Height?: number | undefined; Visible?: boolean | undefined; DataField?: string | undefined; Tag?: string | undefined; Checked?: boolean | undefined; BorderColor?: string | undefined; BorderStyle?: "None" | "Dashed" | "Solid" | "Inset" | undefined; BorderWidth?: number | undefined; FieldName?: string | undefined; Readonly?: boolean | undefined; Required?: boolean | undefined; TabIndex?: number | null | undefined; CheckSize?: number | undefined; CheckStyle?: "Circle" | "Square" | "Diamond" | "Cross" | "Check" | "Star" | undefined; })[] | undefined; Height?: number | undefined; BackColor?: string | undefined; CanGrow?: boolean | undefined; CanShrink?: boolean | undefined; KeepTogether?: boolean | undefined; NewPage?: "None" | "Before" | "After" | "BeforeAfter" | undefined; NewColumn?: "None" | "Before" | "After" | "BeforeAfter" | undefined; PrintAtBottom?: boolean | undefined; Tag?: string | undefined; UnderlayNext?: boolean | undefined; Visible?: boolean | undefined; ColumnCount?: number | undefined; ColumnDirection?: "DownAcross" | "AcrossDown" | undefined; ColumnSpacing?: number | undefined; RepeatToFill?: boolean | undefined; DataField?: string | undefined; GroupKeepTogether?: "None" | "All" | "FirstDetail" | undefined; ColKeepTogether?: boolean | undefined; RepeatStyle?: "None" | "All" | "OnPage" | "OnColumn" | "OnPageIncludeNoDetail" | undefined; ColumnLayout?: boolean | undefined; }[] | undefined; DataSource?: { ConnectionString?: string | undefined; Type?: "CSV" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; JsonPath?: string | undefined; Type?: "JSON" | undefined; DataMember?: string | undefined; } | { FileURL?: string | undefined; Pattern?: string | undefined; Type?: "XML" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "SQL" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "ODBC" | undefined; DataMember?: string | undefined; } | { ConnectionString?: string | undefined; CommandText?: string | undefined; CommandTimeout?: number | undefined; Type?: "OLEDB" | undefined; DataMember?: string | undefined; } | { Name?: string | undefined; Type?: "NonSerializable" | undefined; DataMember?: string | undefined; } | undefined; CalculatedFields?: { Name?: string | undefined; FieldType?: "Date" | "None" | "Double" | "String" | "Boolean" | "Float" | "Int32" | undefined; Formula?: string | undefined; DefaultValue?: string | undefined; }[] | undefined; Script?: string | undefined; PageSettings?: { TopMargin?: number | undefined; RightMargin?: number | undefined; BottomMargin?: number | undefined; LeftMargin?: number | undefined; GutterMargin?: number | undefined; MirrorMargins?: boolean | undefined; PaperSize?: { Size?: "Custom" | "A3" | "A4" | "A5" | "Letter" | "Tabloid" | "Legal" | "Executive" | "A6" | "JISB4" | "ISOB5" | undefined; Width?: number | undefined; Height?: number | undefined; } | undefined; Orientation?: "Default" | "Portrait" | "Landscape" | undefined; Collate?: "Default" | "Collate" | "DontCollate" | undefined; Duplex?: "Default" | "Horizontal" | "Vertical" | "Simplex" | undefined; } | undefined; Watermark?: { Alignment?: "Center" | "TopLeft" | "TopRight" | "BottomLeft" | "BottomRight" | undefined; SizeMode?: "Clip" | "Stretch" | "Zoom" | undefined; PrintOnPages?: string | undefined; Image?: string | undefined; } | undefined; Parameters?: { Key?: string | undefined; ParameterType?: "Date" | "String" | "Boolean" | undefined; Prompt?: string | undefined; DefaultValue?: string | undefined; PromptUser?: boolean | undefined; QueryCreated?: boolean | undefined; DisplayFormat?: string | undefined; }[] | undefined; }, SelectableReport>; type RpxDecoders = { Report: ReturnType; Section: ReturnType; Control: typeof SelectableControlDecoder; DataSource: typeof DataSource; Parameter: typeof Parameter; Style: typeof Style; RootStyle: typeof RootStyle; CalculatedField: typeof CalculatedField$1; }; declare const Decoders: RpxDecoders; type RpxReport = TypeOf$1; type RpxControl = TypeOf$1; type RpxControlTypes = RpxControl['Type']; type RpxReportDocumentType = { platform: 'rpx'; type: 'report'; }; type RpxState = { serverReports: AsyncResourceItemsCollection; rpxStylesTab: RpxStylesTabState; }; type RpxStylesTabState = { styleIndex?: number; }; type SupportedDocumentType = RpxReportDocumentType | RdlxDocumentType; type StylesSettings$1 = { stylesTab: { enabled: boolean; }; stylesheet: { canModify: boolean; }; }; type RpxSettings = { enabled?: boolean; initTemplates?: { imperialTemplates?: string[]; metricTemplates?: string[]; }; toolBoxContent?: RpxControlTypes[]; styles?: Partial; }; type PartialDesignerCoreSettings> = Partial>; type SupportedDocuments = RpxReport | RdlAnyReport; type DesignerCoreState = CoreState & { rdlx: RdlxState; rpx: RpxState; }; type DocumentTemplate = { /** * Id of the document to use as a template */ id?: string; /** * Template content in JSON format */ content?: unknown; }; type RdlDataSetInfo = { /** Data Set Id */ id: string; /** Data Set Name */ name: string; }; type CreateDocumentOptions = { /** * Name of the document. If not specified default 'Untitled' name will be used */ name?: string; /** * Type of the document to create. If not specified RDL report will be created */ type?: SupportedDocumentType; /** * Template to use for the document */ template?: DocumentTemplate; /** * A list of RDL Data Sets to use with the template * * **NOTE:** This won't work with RPX reports */ dataSetsInfo?: RdlDataSetInfo[]; }; type CreateDocumentInfo = { /** * Document type */ type: SupportedDocumentType; /** * Name of the document */ name: string; /** * Document template */ template?: DocumentTemplate; /** * undefined in onBefore**** handlers. * Should be defined in onAfter**** */ success?: boolean; }; type OpenDocumentInfo = { /** * Document type */ type: SupportedDocumentType; /** * Document id */ id: string; /** * Document name */ name: string; /** * undefined in onBefore**** handlers. * Should be defined in onAfter**** */ success?: boolean; }; type SaveDocumentInfo = { /** * Type of the document */ type: SupportedDocumentType; /** * If an existing document is to be overwritten on saving, * the correct id should be specified explicitly */ id?: string; /** * The correct name must be specified explicitly */ name: string; /** * Indicates that a new document is being saved for the first time */ isFirstSave: boolean; /** * undefined in onBefore**** handlers. * Should be defined in onAfter**** */ success?: boolean; }; type RdlxDataTabState = { expandedDataSet: string | null; commonValuesExpanded: boolean; overlay: 'parameter' | 'queryParameter' | 'dataSetPicker' | null; invalidConnectionDataSources: string[]; reportParameter: { value: RdlReportParameter; index: number; } | null; queryParameter: { value: RdlQueryParameter; path: string; } | null; }; type Thumbnail = { loading: boolean; noThumbnail: boolean; thumbnailImage: string; }; type ThumbnailState = { [x: string]: Thumbnail; }; type DocumentType = 'FPL' | 'MSL' | 'DBL' | 'RPX' | 'MSL_MASTER'; type FileViewItemBase = { id: string; name: string; location: string; $metadata?: { Modified?: string; }; }; type FileViewTemplate = FileViewItemBase & { itemType: 'template'; reportType?: DocumentType; location?: string; }; type FileViewReport = FileViewItemBase & { itemType: 'report'; reportType: DocumentType; }; type FileViewDataSet = FileViewItemBase & { itemType: 'dataset'; }; type FileViewMasterReport = FileViewItemBase & { itemType: 'masterReport'; reportType: DocumentType; }; type FileViewFolder = { itemType: 'folder'; id: string; name: string; location: string; parent: FileViewFolder | null; children: FileViewFolder[]; files: FileViewItemBase[]; }; type FileViewItem = FileViewTemplate | FileViewReport | FileViewDataSet | FileViewMasterReport | FileViewFolder; type DataSetsState = { loading: boolean; items: FileViewDataSet[]; error?: string; }; type MasterReportsState = { loading: boolean; items: FileViewMasterReport[]; error?: string; }; type ReportsState = { loading: boolean; items: FileViewReport[]; baseFolder: FileViewFolder; error?: string; }; type TemplatesState = { loading: boolean; builtIn: FileViewTemplate[]; server: FileViewTemplate[]; error?: string; }; type FileViewListMode = 'list' | 'cards'; type FileViewTab = 'new' | 'open' | 'saveAs' | 'about' | 'help' | 'master'; type FileViewState = { open: boolean; tab: FileViewTab; mode: FileViewListMode; status: { busy: boolean; message?: string; }; filter: string; selectedItem: FileViewItem | null; selectedDataSets: FileViewDataSet[]; templates: TemplatesState; dataSets: DataSetsState; reports: ReportsState; masterReports: MasterReportsState; thumbnails: ThumbnailState; }; type RpxDataTabState = { overlay?: 'reportParameter' | 'calculatedField'; reportParameterIndex?: number; calculatedFieldIndex?: number; }; type ViewerDocumentInfo = { id: string; name: string; content: any; temporary?: boolean; preferredFormat: 'html' | 'svg'; }; type ViewerSettings = { element: string; applicationTitle: string; documentInfo: ViewerDocumentInfo; locale: string; reportInfo: { id: string; content: any; name: string; isTemporary: boolean; }; /** The theme to use for the viewer. */ theme: DesignerTheme | undefined; }; type AppState = { documentId?: string; documentName: string; sideBarTab: string; overlay: { visible: boolean; message?: string; }; viewerSettings: ViewerSettings | null; }; type WebDesignerState = { app: AppState; core: DesignerCoreState; dialogs: DialogsState; rdlxDataTab: RdlxDataTabState; rpxDataTab: RpxDataTabState; tablixWizard: TablixWizardState; fileView: FileViewState; chartWizard: ChartWizardState; }; type TitleInfo = { /** Document name * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * title: { * onUpdate: (info: TitleInfo) => `${info.name}${info.hasUnsavedChanges ? ' - Has Unsaved Changes!' : ''}` * } * }); * ** */ name: string; /** Indicates whether document has unsaved changes or not. * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * title: { * onUpdate: (info: TitleInfo) => `${info.name}${info.hasUnsavedChanges ? ' - Has Unsaved Changes!' : ''}` * } * }); * ** */ hasUnsavedChanges: boolean; }; type AppBarSettings = { /** * Specifies whether **App Bar** needs to be shown\ * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * appBar: { * visible: false * } * }); * ** * @default true */ visible: boolean; /** **Save** button settings */ saveButton: { /** * Specifies whether **Save As** button needs to be shown * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * appBar: { * saveButton: { visible: true } * } * }); * ** * @default true */ visible: boolean; }; /** **Save As** button settings */ saveAsButton: { /** * Specifies whether **Save As** button needs to be shown * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * appBar: { * saveAsButton: { visible: true } * } * }); * ** * @default true */ visible: boolean; }; /** **Open** button settings */ openButton: { /** * Specifies whether **Open** button needs to be shown * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * appBar: { * openButton: { visible: true } * } * }); * ** * @default false */ visible: boolean; }; /** **Insert** tab settings */ insertTab: { /** * Specifies whether **Insert** tab needs to be shown in Designer application bar.\ * **Tool Box** and **Insert** tab are interchangeable * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * appBar: { * insertTab: { visible: true }, * } * }); * ** * @default false */ visible: boolean; }; /** **Home** tab settings */ homeTab: { /** * Specifies whether **Home** tab needs to be shown in Designer application bar. * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * appBar: { * homeTab: { visible: true }, * } * }); * ** * @default true */ visible: boolean; }; /** **Context Actions** tab settings */ contextActionsTab: { /** * Specifies whether **Context Actions** tab needs to be shown in Designer application bar. * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * appBar: { * contextActionsTab: { visible: false }, * } * }); * ** * @default true */ visible: boolean; }; /** **Parameters** tab settings */ parametersTab: { /** * Specifies whether **Parameters** tab needs to be shown in Designer application bar for rdlx documents. * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * appBar: { * parametersTab: { visible: false }, * } * }); * ** * @default true */ visible: boolean; }; /** **Script** tab settings */ scriptTab: { /** * Specifies whether **Script** tab needs to be shown in Designer application bar for rpx documents. * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * appBar: { * scriptTab: { visible: false }, * } * }); * ** * @default true */ visible: boolean; }; }; type EditorSettings = { rulers?: { visible: boolean; snapStep?: { in: number; cm: number; }; }; gridSize?: string; showGrid?: boolean; snapToGrid?: boolean; snapToGuides?: boolean; }; type StatusBarSettings = { visible: boolean; toggleUnitsButton: { visible: boolean; }; toggleGridButton: { visible: boolean; }; gridSizeEditor: { visible: boolean; }; rulersButton: { visible: boolean; }; propertiesModeButton: { visible: boolean; }; }; type MenuCssIcon = { type: 'css'; class: string; }; type MenuIcon = MenuCssIcon; type MenuSettings = { /** * Specifies whether **Main Menu** needs to be shown\ * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * menu: { visible: false } * }); * ** * @default true */ visible: boolean; /** **Logo** settings */ logo: { /** * Specifies whether logo needs to be shown in the menu * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * menu: { * logo: { visible: false } * } * }); * ** * @default true */ visible?: boolean; /** * Sets a custom logo to be shown in the menu * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * menu: { * logo: { custom: { type: 'css', class: 'my-custom-icon' }; } * } * }); * ** */ custom?: MenuIcon; }; /** **Application Name** settings */ applicationName: { /** * Specifies whether application name needs to be shown in the menu * @default true */ visible?: boolean; /** * Sets a application name to be shown in the menu * * **Example:** * ```javascript * designerOptions.menu.applicationName.name = 'Custom App Name'; * ``` * @default 'AR Web Designer' */ name?: string; }; /** **Tool Box** settings */ toolBox: { /** * Specifies whether left-side menu **Tool Box** needs to be shown * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * menu: { * toolBox: { visible: false } * } * }); * ** * @default true */ visible: boolean; }; /** **Document Explorer** settings */ documentExplorer: { /** * Specifies whether **Document Explorer** button needs to be shown * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * menu: { * documentExplorer: { visible: false } * } * }); * ** * @default true */ visible: boolean; }; /** **Group Editor** settings */ groupEditor: { /** * Specifies whether **Group Editor** button needs to be shown. * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * menu: { * groupEditor: { visible: false } * } * }); * ** * @default true */ visible: boolean; }; /** **Layer Editor** settings */ layerEditor: { /** * Specifies whether **Layer Editor** button needs to be shown. * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * menu: { * layerEditor: { visible: false } * } * }); * ** * @default true */ visible: boolean; }; }; type PropertyGridSettings = { propertiesTab: { visible?: boolean; }; mode?: 'Basic' | 'Advanced'; sort?: 'categorized' | 'alphabetical'; collapsibleCategories: { enabled?: boolean; }; saveExpandEditorsState: { enabled?: boolean; }; }; type DocumentsSettings = { /** **File View** settings */ fileView: { /** * Specifies whether **File View** tab needs to be shown * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * documents: { * fileView: { * visible: false, * } * } * }); * ** * @default true */ visible: boolean; }; handlers: { /** An async handler, cancels saving process if returned false * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * documents: { * handlers: { * onBeforeSave: (info: SaveDocumentInfo) => {return false; } * } * } * }); */ onBeforeSave?: (info: SaveDocumentInfo) => Promise; /** A handler that is called when save is complete * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * documents: { * handlers: { * onAfterSave: (info: SaveDocumentInfo) => { * if (!info.success) throw new Error(`Report saving error`); * } * } * } * }); */ onAfterSave?: (info: SaveDocumentInfo) => void; /** An async handler, cancels opening process if returned false * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * documents: { * handlers: { * onBeforeOpen: () => { * return new Promise((resolve, reject) => { * resolve(false); * }); * } * } * } * }); */ onBeforeOpen?: () => Promise; /** A handler that is called when open is complete * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * documents: { * handlers: { * onAfterOpen: () => { * console.log('New report opened successful.') * } * } * } * }); */ onAfterOpen?: () => void; /** An async handler, cancels create process if returned false * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * documents: { * handlers: { * onBeforeCreate: () => {return false} * } * } * }); */ onBeforeCreate?: () => Promise; /** A handler that is called when create is complete * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * documents: { * handlers: { * onAfterCreate: () => { * console.log('New report created successful.') * } * } * } * }); */ onAfterCreate?: () => void; /** A handler that is triggered when report name/id is updated * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * documents: { * handlers: { * onInfoUpdate: (options: * { * name: string, * id?: string, * type: SupportedDocumentType['type'], * platform: SupportedDocumentType['platform'] * }) => * {console.log(`name changed ${options.name}`);} * } * } * }); */ onInfoUpdate?: (options: { name: string; id?: string; type: SupportedDocumentType['type']; platform: SupportedDocumentType['platform']; }) => void; /** A handler that is triggered when report content is changed */ onDocumentChanged?: (options: { document: SupportedDocuments; hasUnsavedChanges: boolean; }) => void; }; }; type TitleSettings = { /** * You can implement custom logic for updating browser tab's title when edited document gets updated in Designer * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * title: { * onUpdate: (info: TitleInfo) => * `${info.name}${info.hasUnsavedChanges ? ' - Has Unsaved * Changes!' : info.name}` * } * }); * ** * @param options TitleInfo object * @default undefined */ onUpdate?: (info: TitleInfo) => string; /** * Specifies whether browser tab title can be updated * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * title: { * disabled: true * } * }); * ** * @default false */ disabled: boolean; }; type ServerSettings = { /** * Specifies the base URL for Designer Server API. * @default api * * **Example:** * ```javascript * designerOptions.server.url = 'api/designer'; * ``` */ url: string; /** * Callback allowing to modify http requests before sending them. Use either this or async version. */ onBeforeRequest?: (init: RequestInit) => RequestInit; /** * Async version of onBeforeRequest. Use either this or normal version. */ onBeforeRequestAsync?: (init: RequestInit) => Promise; }; type PredefinedProvider = 'SQL' | 'OLEDB' | 'ODBC' | 'JSON' | 'CSV' | 'XML' | 'SQLITE' | 'SHARED'; type PredefinedOleDbProvider = 'Microsoft.Jet.OLEDB.4.0' | 'SQLOLEDB.1' | 'MSDataShape.1' | 'MSDASQL.1'; type OleDbProvider = PredefinedOleDbProvider | string; type CustomDataProviderDescriptor = { key: string; name: string; }; type DataSettings = { dataTab: { visible: boolean; }; dataSources: { visible: boolean; canModify: boolean; options: { predefinedProviders: PredefinedProvider[]; oleDbProviders: OleDbProvider[]; customProviders: CustomDataProviderDescriptor[]; }; shared: { enabled: boolean; }; }; dataSets: { visible: boolean; canModify: boolean; }; parameters: { visible: boolean; canModify: boolean; }; slicers: { visible: boolean; }; commonValues: { visible: boolean; }; }; type StylesSettings = { stylesTab: { visible: boolean; }; stylesheet: { canModify: boolean; }; }; type DebugSettings = { versionButton: { visible: boolean; }; }; type PartialDataSettings = Omit, 'dataSources'> & { dataSources?: Omit, 'options'> & { options?: Partial; }; }; type ToolBarSettings = { visible: boolean; }; type AppSettings = { /** * When **storeUnsavedReport** is **enabled**, the last unsaved report can be restored if browser tab or browser itself gets accidentally closed.\ * In case **storeUnsavedReport** is **disabled**, the aforementioned functionality is not available * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * storeUnsavedReport: false * }); * ** * @default true */ storeUnsavedReport: boolean; /** * When **storeUserPreferences** is **enabled**, user preferences will be saved to a browser storage.\ * In case **storeUnsavedReport** is **disabled**, the aforementioned functionality is not available * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * storeUserPreferences: false * }); * ** * @default true */ storeUserPreferences: boolean; /** * By default, focused elements (like buttons) are highlighted only for a small period of time after **Tab** key was pressed.\ * This settings makes focused elements permanently highlighted. * * **Example:** * GrapeCity.ActiveReports.Designer.create('#ar-web-designer', { * disableFocusTimer: true * }); * ** * @default false */ disableFocusTimer: boolean; /** * Document to open on app startup, if not set new empty document will be created */ document?: { id: string; type: SupportedDocumentType; }; /** Editor settings */ editor: EditorSettings; /** **App Bar** settings */ appBar: AppBarSettings; /** **Menu** settings */ menu: MenuSettings; /** Status Bar settings */ statusBar: StatusBarSettings; /** Tool Bar settings */ toolBar: ToolBarSettings; /** Property Grid settings */ propertyGrid: PropertyGridSettings; /** Documents API settings */ documents: DocumentsSettings; /** Data**-related settings */ data: DataSettings; /** RPX **Styles**-related settings * @deprecated Use RPX stylesheet settings instead */ styles: StylesSettings; /** Backend-related settings */ server: ServerSettings; /** Document **Title** settings */ title: TitleSettings; /** Document **Preview** settings */ preview: PreviewSettings; /** Debug settings */ debug?: DebugSettings; }; type PreviewSettings = { canPreview?: boolean; openViewer: (settings: ViewerSettings) => void; }; type PartialAppSettings = Omit, 'editor' | 'appBar' | 'menu' | 'statusBar' | 'propertyGrid' | 'documents' | 'data' | 'styles' | 'server' | 'title' | 'preview'> & { editor?: Partial; appBar?: Partial; menu?: Partial; statusBar?: Partial; propertyGrid?: PropertyGridSettings; documents?: Partial; data?: PartialDataSettings; /** * @deprecated Use RPX stylesheet settings instead */ styles?: Partial; server?: Partial; title?: Partial; preview?: Partial; }; type ARWebDesignerThemeName = 'activeReports' | 'activeReportsDark'; type FixedPartialThemesSettings = Omit, 'list'> & { list?: (DesignerBuiltInThemeName | ARWebDesignerThemeName | DesignerTheme)[]; }; type FixedPartialRdlxSettings = Omit, 'reportStyles'> & { reportStyles?: RdlxReportStyles[]; }; type FixedPartialDesignerCoreSettings = Partial & { rdlx?: FixedPartialRdlxSettings; themes?: FixedPartialThemesSettings; }>; type PartialARWebDesignerSettings = FixedPartialDesignerCoreSettings & PartialAppSettings; type AppInfo = { applicationTitle: string; applicationTitleCompact: string; applicationVersion: string; coreVersion: string; }; declare const addLanguage: (lng: string, resources: ResourceBundle[]) => void; /** * Provides methods for working with designer themes and colors. */ declare const designerThemesAPI: { /** * Creates a new theme based on an existing built-in theme, with a customizable accent color. * * @param baseThemeName - The built-in theme to base the new theme on. * @param customTheme - Custom theme object. Specify only fields which should be different from base theme. "name" field is required * @returns A new theme with a customized accent color. */ create: (baseThemeName: DesignerBuiltInThemeName, partialCustomTheme: Partial & { name: string; }) => DesignerTheme; color: { /** * Creates a Color object from a hexadecimal color code. * * @param hexColor - The hexadecimal color code (e.g., "#RRGGBB" or "#RRGGBBAA"). * @returns A Color object representing the specified color. */ hex: (hexColor: string) => Color; /** * Creates a Color object from individual RGB(A) components. * * @param r - The red component (0-255). * @param g - The green component (0-255). * @param b - The blue component (0-255). * @param [a] - The alpha component (0.0-1.0) (optional). * @returns A Color object representing the specified color. */ rgba: (r: number, g: number, b: number, a?: number) => Color; }; }; type DesignerThemesAPI = typeof designerThemesAPI; /** * Creates a new Web Designer instance * @param selector DOM selector for the container element * @param partialSettings Settings for the instance * @returns API for the created Web Designer instance */ declare const createDesigner: (selector: string, partialSettings?: PartialARWebDesignerSettings) => Promise<{ app: { about: AppInfo; focus: () => void; editor: { canUndo: () => boolean; canRedo: () => boolean; canCut: () => boolean; canCopy: () => boolean; canPaste: () => boolean; canDelete: () => boolean; undo: () => void; redo: () => void; cut: () => void; copy: () => void; paste: () => void; delete: () => void; }; panels: { menu: { open: (panelId: string) => void; pin: () => void; close: () => void; }; sidebar: { open: (id: string) => void; close: () => void; }; }; themes: { current: () => DesignerTheme; set: (themeName: string) => void; reset: () => void; }; }; documents: { create: (options?: CreateDocumentOptions) => Promise; open: () => void; openById: (id: string, type: SupportedDocumentType, name?: string | undefined, content?: unknown) => Promise; saveById: (id?: string | undefined, name?: string | undefined) => Promise; saveByName: (name: string) => Promise; save: () => void; saveAs: () => void; hasUnsavedChanges: () => boolean; isNew: () => boolean; info: () => { id: string | undefined; name: string; type: SupportedDocumentType | undefined; }; preview: () => void; }; notifications: { send: (level: Level, caption: string, content?: string | undefined) => void; info: (caption: string, text?: string | undefined) => void; error: (caption: string, errorText?: string | undefined) => void; warning: (caption: string, warningText?: string | undefined) => void; dismissAll: () => void; }; settings: CoreSettings; store: redux.Store & { dispatch: unknown; }; }>; type DesignerAPI = Awaited>; /** * The main object exported by **web-designer.js** module. */ declare const arWebDesigner: { /** * Renders **Web Designer** to **

** element with given **selector** using the specified **DesignerSettings** object. * * **Example:** * ```javascript * arWebDesigner.create('#designer-id', designerSettings); * ``` * * @param selector Designer container selector * @param settings DesignerSettings object * @returns DesignerAPI of this instance */ create: (selector: string, settings: PartialARWebDesignerSettings) => Promise; /** * Returns DesignerAPI of previously created instance of **WebDesigner** */ apiOf: (instanceId: string) => DesignerAPI; /** * Returns DesignerAPI of previously created instance of **WebDesigner** */ addLanguage: (lng: string, resources: ResourceBundle[]) => void; themes: DesignerThemesAPI; /** * Destroys Designer Application * * **Example:** * ```javascript * arWebDesigner.create('#container-1', { ...settings, instanceId: 'instance-1' }); * arWebDesigner.destroy('#container-1', 'instance-1'); * * ``` * @param selector Designer container selector * @param instanceId Optional parameter. Use only if Designer was created using DesignerSettings.instanceId. */ destroy: (selector: string, instanceId?: string) => void; }; declare global { interface Window { GrapeCity: { ActiveReports: { Designer: { create: typeof arWebDesigner.create; apiOf: typeof arWebDesigner.apiOf; addLanguage: typeof addLanguage; destroy: typeof arWebDesigner.destroy; }; DesignerLocalization: { Resources: Record; }; DesignerThemes: DesignerThemesAPI; }; }; } } type ARWebDesigner = typeof arWebDesigner; export { ARWebDesigner, PartialARWebDesignerSettings, arWebDesigner };