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