/// <reference types="node" />
import { PathLike } from 'fs';
export declare const EXTENSION = ".showpad";
export declare const MAX_SIZE: number;
export declare const MAX_SIZE_ERROR = "The bundle exceeds the max filesize (4GB)";
export declare const createBundleName: (appIdentifier: string, appVersion: string) => string;
export declare const isValidBundleSize: (bundlePath: PathLike) => Promise<boolean>;
