import { Db } from "./db.js";
import { Document } from "./Document.js";
export declare class Task {
    private idPath;
    private offset;
    private lnk;
    private db;
    private getDbRecord;
    constructor(db: Db, idPath: string, offset: number);
    from(): Document;
    ast(): unknown;
    checked(): boolean;
    line(): number;
    column(): number;
    id(): number;
    /**
     * experimental
     */
    text(): string;
    markdown(): string;
}
