import type { ApiClient } from '../../http';
import type { NoteReportItem } from '../../models';
import { Resource } from '../Resource';
export declare class NoteReportResource extends Resource {
    constructor(client: ApiClient);
    get(noteId: string): Promise<NoteReportItem>;
    getPdf(noteId: string): Promise<ArrayBuffer>;
}
//# sourceMappingURL=NoteReportResource.d.ts.map