import * as React from 'react';
export interface IntroProps {
    continueLabel?: string;
    countdown?: {
        seconds: number;
        label?: string;
    };
    node: React.ReactNode;
    onContinue: () => void;
}
export default function Intro({ continueLabel, countdown, node, onContinue, }: IntroProps): import("react/jsx-runtime").JSX.Element;
