export interface Props { animated?: boolean; backgroundColor?: string; foregroundColor?: string; } declare function SummaryCardLoader({ backgroundColor, foregroundColor, animated, }: Props): JSX.Element; export default SummaryCardLoader;