export interface AppOptions {
    piletPath?: string;
    authPath?: string;
    loginPath?: string;
    filePath?: string;
    rootUrl?: string;
    apiKeys?: Array<string>;
    snapshotDir?: string;
    port?: number;
}
export declare function runApp({ filePath, piletPath, authPath, loginPath, port, apiKeys, snapshotDir, rootUrl, }?: AppOptions): Promise<import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>>;
