import React, { CSSProperties } from 'react'; export type Props = { className?: string; style?: CSSProperties; }; declare const LoadingCard: ({ className, style }: Props) => React.JSX.Element; export { LoadingCard };