import type { FC } from 'react'; interface LoadingProps { loading: boolean; message?: string; } export declare const Loading: FC; export {};