import { FixableCellRangeCoords, CellCoords } from "@sheetxl/common";
export interface SheetCellRangeCoords extends FixableCellRangeCoords {
    sheetName: string;
}
export interface SheetCellCoords extends CellCoords {
    sheetName: string;
}
export type SheetCellRangeCoordsAddress = Partial<SheetCellRangeCoords> | string;
export type SheetCellCoordsAddress = Partial<SheetCellCoords> | string;
export type SheetCellRangeCoordsAddresses = Partial<SheetCellRangeCoords>[] | string;
//# sourceMappingURL=SheetCellRange.d.ts.map