export declare type LauncherProps = { profileUrl: string; avatarUrl: string; }; declare function Launcher({ profileUrl, avatarUrl }: LauncherProps): JSX.Element; export default Launcher;