import { Resource } from '../model/note'; import { FoamWorkspace } from '../model/workspace'; import { URI } from '../model/uri'; export interface OutlineSection { label: string; level: number; range: { start: { line: number; character: number; }; end: { line: number; character: number; }; }; } export interface OutlineResult { id: string; uri: URI; sections: OutlineSection[]; } /** * Returns the heading structure (sections) of a resource. */ export declare function outlineData(workspace: FoamWorkspace, resource: Resource): OutlineResult; //# sourceMappingURL=outline.d.ts.map