export = FacebookPackage;
declare class FacebookPackage {
    constructor(packageFolder: any, assetsFolder: any, chunkSize?: number, strictChunkSize?: boolean);
    packageFolder: string;
    assetsFolder: string;
    chunkSize: number;
    strictChunkSize: boolean;
    createPackage(): void;
    createInlineAssets(): string[];
    createAssetsScripts(files: any, root: any): string[];
    saveToZip(zipFilePath: any): void;
}
