import { type IntegerColumnFormat } from '@deephaven/jsapi-utils'; import type { dh as DhType } from '@deephaven/jsapi-types'; import { type FormatContextMenuOption } from './FormatContextMenuUtils'; declare class IntegerFormatContextMenu { static defaultGroup: number; static presetGroup: number; static customGroup: number; /** * Creates list of formatting options for Integer context menu * @param dh JSAPI instance * @param selectedFormat Selected format object, null for no selected format * @param onCustomFormatChange Callback to call when the custom format is changed * @returns Array of formatting options for the context menu */ static getOptions(dh: typeof DhType, selectedFormat: IntegerColumnFormat, onCustomFormatChange: (value: IntegerColumnFormat | null) => void): FormatContextMenuOption[]; } export default IntegerFormatContextMenu; //# sourceMappingURL=IntegerFormatContextMenu.d.ts.map