import { Glue42Core } from "@glue42/core"; import { Glue42Office } from "../../glue4office"; import { ShowGridInvocationResult, ShowGridParams } from "./types"; export declare function parseAgmResult(r: Glue42Core.AGM.InvocationResult): boolean; export declare function convertParams(columns: Glue42Office.Excel.ColumnConfig[], data: object[], options: Glue42Office.Excel.OpenSheetOptions, cookie?: string): { params: ShowGridParams; agmOptions: Glue42Core.AGM.InvokeOptions; }; export declare function flatten(arr: any[][]): any[]; export declare function camelize(str: string): string; export declare const sheetIdSeparator = "_"; export declare function getSheetId(workbook: string, worksheet: string): string;