import React, { type ChangeEvent } from 'react'; import { type TypeValue as FilterTypeValue } from '@deephaven/filters'; import './GotoRow.scss'; import type IrisGridModel from './IrisGridModel'; import { type ColumnName } from './CommonTypes'; interface GotoRowProps { gotoRow: string; gotoRowError: string; gotoValueError: string; onGotoRowSubmit: () => void; model: IrisGridModel; onGotoRowNumberChanged: (event: ChangeEvent) => void; onClose: () => void; isShown: boolean; onEntering: () => void; onEntered: () => void; onExiting: () => void; onExited: () => void; gotoValueSelectedColumnName: ColumnName; gotoValue: string; gotoValueFilter: FilterTypeValue; onGotoValueSelectedColumnNameChanged: (columnName: ColumnName) => void; onGotoValueSelectedFilterChanged: (filter: FilterTypeValue) => void; onGotoValueChanged: (input: string) => void; onGotoValueSubmit: (isBackward?: boolean) => void; } export type GotoRowElement = { focus: () => void; }; declare const GotoRow: React.ForwardRefExoticComponent>; export default GotoRow; //# sourceMappingURL=GotoRow.d.ts.map