import { JSX } from 'solid-js/jsx-runtime';

interface Props {
    children: JSX.Element | "";
    fallback: JSX.Element | "";
    class: string;
}
declare const LoadingSkeleton: (props: Props) => JSX.Element;
export default LoadingSkeleton;
