import React from 'react';
import { GuestConfig } from '../types';
declare const Guest: ({ config, handlers }: {
    config: GuestConfig;
    handlers?: Record<string, () => void> | undefined;
}) => React.JSX.Element;
export default Guest;
