import React from 'react'; export declare type LiftAction = 'create' | 'apply' | 'unapply' | 'dev'; export declare function ensureDatabaseExists(action: LiftAction, killInk: boolean, forceCreate?: boolean): Promise; export declare function interactivelyCreateDatabase(connectionString: string, action: LiftAction, schemaDir: string): Promise; export declare function askToCreateDb(connectionString: string, action: LiftAction, schemaDir: string): Promise; declare type AppState = { error?: Error; }; export declare class App extends React.Component { state: AppState; static getDerivedStateFromError(error: Error): { error: Error; }; render(): {} | null | undefined; } export {};