import { Cell, CellWithId, Column, Selection, SelectionWithId } from '../types'; export declare const getCell: (value: any, colMax: number, rowMax: number, columns: Column[]) => Cell | null; export declare const getCellWithId: (cell: Cell | null, columns: Column[]) => CellWithId; export declare const getSelection: (value: any, colMax: number, rowMax: number, columns: Column[]) => Selection | null; export declare const getSelectionWithId: (selection: Selection | null, columns: Column[]) => SelectionWithId | null; export type SelectOption = { label: string; value: string; avatar?: string; tag?: { text: string; color?: string; }[]; }[]; export declare const addOptionReplece: (mainOption: SelectOption, assistantOption: SelectOption) => SelectOption; export declare const initChoiseOption: (initOption: SelectOption, rowData: string[]) => SelectOption; //# sourceMappingURL=typeCheck.d.ts.map