import { Address, PointType } from "../types"; export declare const x2c: (x: number) => string; export declare const c2x: (col: string, absolute?: boolean) => number; export declare const y2r: (y: number) => string; export declare const r2y: (row: number | string, absolute?: boolean) => number; export declare const p2a: ({ y, x }: PointType) => string; export declare const tsv2matrix: (tsv: string) => string[][]; export declare const a2p: (address: Address) => PointType; export declare const grantAddressAbsolute: (address: Address, absCol: boolean, absRow: boolean) => string | undefined; //# sourceMappingURL=converters.d.ts.map