import type { ByteSource, BinaryAttachment as BinaryAttachmentInterface } from '@enonic-types/lib-value';
import { BinaryReference } from './BinaryReference';
export declare class BinaryAttachment implements BinaryAttachmentInterface {
    private byteSource;
    private reference;
    constructor(reference: string, byteSource: ByteSource);
    getReference(): BinaryReference;
    getByteSource(): ByteSource;
}
