/**
 * This file bootstraps your application by running the register function
 * 	and setting up error handling.
 */
import { Bootstrap as _Bootstrap, RunFunction } from 'ts-async-bootstrap';
import { errorHandler } from './error-handler';
import { register, teardown } from './register';
export declare class App extends _Bootstrap {
    onError: typeof errorHandler;
    register: typeof register;
    teardown: typeof teardown;
}
export declare const app: App;
export declare function bootstrap(run: RunFunction): void;
