import React from "react"; import { Colors } from "../colors"; export interface BoxSkeletonProps { ratio: '1x1' | '4x3' | '16x9' | '3x4' | '9x16' | '21x9' | '9x21'; color?: Colors; wave?: boolean; } declare const BoxSkeleton: ({ ratio, color, wave }: BoxSkeletonProps) => React.JSX.Element; export default BoxSkeleton;