export declare const litDataGridTanstackColumnSchema: { readonly type: "object"; readonly properties: { readonly field: { readonly type: "string"; }; readonly type: { readonly type: "string"; readonly enum: readonly ["string", "number", "date", "range", "select", "multiselect", "includeExclude", "dateTime", "actions", "dateTimeRange", "dateRange", "numberRange", "currency", "thumbnail"]; }; readonly headerName: { readonly type: "string"; }; readonly columnAggregation: { readonly type: "string"; readonly enum: readonly ["sum", "median", "min", "max"]; }; readonly enableGrouping: { readonly type: "boolean"; }; readonly enableFilter: { readonly type: "boolean"; }; readonly enableSorting: { readonly type: "boolean"; }; readonly size: { readonly type: "number"; }; readonly minSize: { readonly type: "number"; }; readonly maxSize: { readonly type: "number"; }; readonly sortDescFirst: { readonly type: "boolean"; }; readonly enableResizing: { readonly type: "boolean"; }; readonly enablePinning: { readonly type: "boolean"; }; readonly numberOfDecimal: { readonly type: "number"; }; readonly currency: { readonly type: "string"; readonly enum: readonly ["CZK", "EUR", "USD", "GBP", "CHF", "PLN", "HUF", "JPY", "AUD", "CAD", "NOK", "SEK", "DKK", "CNY", "RUB"]; }; readonly valueOptions: { readonly type: "array"; readonly items: { readonly type: "object"; readonly properties: { readonly value: { readonly anyOf: readonly [{ readonly type: "string"; }, { readonly type: "number"; }]; }; readonly label: { readonly type: "string"; }; }; readonly required: readonly ["value", "label"]; }; }; readonly thumbnailPreviewMaxWidth: { readonly type: "number"; }; readonly thumbnailPreviewMaxHeight: { readonly type: "number"; }; readonly filterOperators: { readonly type: "array"; readonly items: { readonly type: "object"; readonly properties: { readonly label: { readonly type: "string"; }; readonly value: { readonly type: "string"; }; readonly customFilter: { readonly type: "string"; }; }; readonly required: readonly ["label", "value"]; readonly additionalProperties: false; }; }; }; readonly required: readonly ["field"]; readonly additionalProperties: true; };