import React, { CSSProperties } from "react"; interface PixelTransitionProps { firstContent: React.ReactNode; secondContent: React.ReactNode; gridSize?: number; pixelColor?: string; animationStepDuration?: number; className?: string; style?: CSSProperties; aspectRatio?: string; } declare const PixelTransition: React.FC; export default PixelTransition; //# sourceMappingURL=PixelTransition.d.ts.map