import { Resource } from './types';
export declare class Packer {
    _data: Resource;
    constructor(value: Resource);
    patch(title: string, vendors: string, adSize: string, orientation?: string, useCompress?: boolean): string;
    private _getHTMLTag;
    private _getJSTag;
    private _getStyleTag;
}
