import { GridBaseRow } from '../Grid';
import { CellEditorCommon } from '../GridCell';
export interface GridFormEditBearingProps<TData extends GridBaseRow> extends CellEditorCommon {
    formatValue?: (value: any) => string;
    placeHolder?: string;
    range?: (value: number | null) => string | null;
    onSave?: (props: {
        selectedRows: TData[];
        value: number | null;
    }) => Promise<boolean>;
}
export declare const GridFormEditBearing: <TData extends GridBaseRow>(props: GridFormEditBearingProps<TData>) => import("react/jsx-runtime").JSX.Element;
