import { ReactNode } from 'react'; export type OnboardingProps = { appName: ReactNode; onFinish?: (values: { name: string; picture?: string; }) => void; onLogout?: () => void; }; export declare const Onboarding: ({ appName, onFinish, onLogout, }: OnboardingProps) => import("react/jsx-runtime").JSX.Element;