import { ResourceMaster } from "../Interfaces";
import ResourceMain from "./ResourceMai";
export interface BINARY {
    id?: string;
    data: string;
}
export declare class Binary extends ResourceMain implements ResourceMaster {
    toHtml(): Promise<string>;
    statusArray?: Function | undefined;
    getFHIR(options: BINARY): {
        resourceType: string;
        id: string | undefined;
        meta: {
            profile: string[];
        };
        contentType: string;
        data: string;
    };
    convertFhirToObject(options: any): BINARY;
}
//# sourceMappingURL=Binary.d.ts.map