import React from "react"; import type { TurbulenceProps } from "../../../dom/types"; import type { SkiaDefaultProps } from "../../processors/Animations/Animations"; export const Turbulence = ({ seed = 0, tileWidth = 0, tileHeight = 0, ...props }: SkiaDefaultProps) => { return ( ); };