import { Document } from 'bson';
import { Context } from 'moleculer';
export declare const getById: {
    readonly rest: "GET /:id";
    readonly handler: (ctx: Context<Document>) => Promise<Document>;
};
