import { FunctionComponent } from 'react';
interface WelcomeProps {
    showApp: () => void;
}
declare const Welcome: FunctionComponent<WelcomeProps>;
export { Welcome as default };
