import type { ReactElement } from 'react';
type LoaderPageProps = {
    title: string;
    subtitles: string[];
    isReady: boolean;
    loadingSeconds?: number;
};
declare const LoaderPage: ({ title, subtitles, isReady, loadingSeconds, }: LoaderPageProps) => ReactElement;
export default LoaderPage;
//# sourceMappingURL=LoaderPage.d.ts.map