/*! Copyright © 2024 Open Text Corporation, All Rights Reserved. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ export declare class Config { designer: DesignerConfig; runtime: RuntimeConfig; id: string; } export declare class DesignerConfig { allowHeightToBeResized: boolean; disableTypeAhead?: boolean; isContainer: boolean; grid?: DesignerGridConfig; } export declare class RuntimeConfig { allowMultiExpand?: boolean; autoCompleteToken?: string; backgroundColor: string; backgroundImage?: string; border?: BorderConfig; controls: string[]; dataType?: string; disabled?: boolean; displayName: string; flexLayout?: FlexLayoutConfig; flexPosition?: string; grid?: GridConfig; gridChild?: GridChildConfig; height: DimensionConfig; imageData?: string; input?: FontConfig; isHidden?: boolean; label?: LabelConfig; layoutTextStyle?: string; name?: string; maxAllowed?: number; maxLength?: number; maxSnapRows?: number; maxValue?: number; minValue?: number; noBorder?: boolean; noMargin?: boolean; options?: string; panelIndex?: number; parentId: string; placeholder: string; propertyPath: string; readOnly: boolean; rearrangeControlsForSmallScreens?: boolean; repeating: boolean; required: boolean; rtf?: { enabledPlugins: string[]; }; section?: SectionConfig; schemaId: string; showHorizontal?: boolean; sizeToCell?: boolean; sort: string; table?: TableConfig; tabs?: number; themes: any; title?: TitleConfig; tooltip: string; type: string; autoHeight?: boolean; urlControl?: { freeTextUrl?: string; pickerUrl?: string; useFreeText?: boolean; referrerPolicy?: string; sandboxOptions?: string[]; link?: { visited?: string; unvisited?: string; hover?: string; active?: string; }; }; useAutoComplete?: boolean; useDefaultPlaceholder?: boolean; useTypeAhead?: boolean; user: UserConfig; width: DimensionConfig; } export declare class BorderConfig { static getBorderConfig(): BorderConfig; borderRadius: string; color: string; onBottom: boolean; onLeft: boolean; onRight: boolean; onTop: boolean; style: string; width: DimensionConfig; } export declare class DimensionConfig { value: number | string; unit: string; } export declare class GridConfig { static getGridConfig(numberOfColumns?: number): GridConfig; gap: number; numberOfColumns: number; padding: number; } export declare class DesignerGridConfig { static getDesignerGridConfig(numberOfColumns?: number): DesignerGridConfig; inheritParentColumnCount: boolean; numberOfColumns: number; numberOfRows: number; } export declare class LabelConfig { static getLabelConfig(label: any): LabelConfig; alignment: string; font: FontConfig; position: string; show: boolean; text: string; width: string; } export declare class FontConfig { static getFontConfig(alignment?: string): FontConfig; alignment: string; color: string; decoration: string; family: string; size: string; style: string; weight: string; } export declare class SectionConfig { static getSectionConfig(): SectionConfig; isCollapsed?: boolean; rowsToDisplay: number; } export declare class TableConfig { static getTableConfig(): TableConfig; allowAdd: boolean; allowFacetedFiltering: boolean; allowMultipleSelection: boolean; allowSearch: boolean; columns: Config[]; header: HeaderConfig; noRecordsFoundMessage: string; rows: any[]; showCheckColumn: boolean; showMobile: boolean; showPagination: boolean; variableHeightTable: boolean; } export declare class TitleConfig { static getTitleConfig(Title: any): TitleConfig; base64Image: string; show: boolean; text: string; } export declare class HeaderConfig { show: boolean; } export declare class FlexLayoutConfig { static getFlexLayoutConfig(): FlexLayoutConfig; alignItems: string; justifyContent: string; showSplitters: boolean; } export declare class GridChildConfig { static getGridChildConfig(gridRowStart?: number, gridColumnStart?: number, gridColumnEnd?: number, gridRowEnd?: number): GridChildConfig; gridColumnEnd: number; gridColumnStart: number; gridRowEnd: number; gridRowStart: number; } export declare class UserConfig { static getUserConfig(): UserConfig; showGroups: boolean; showUsers: boolean; }