import { type LiquidMetalProps } from '@paper-design/shaders-react'; import { type ComponentPropsWithoutRef, type Ref } from 'react'; type LiquidMetalBlockShaderProps = Partial>; type LiquidMetalBlockProps = Omit, 'children'> & LiquidMetalBlockShaderProps & { ref?: Ref; shaderClassName?: string; shaderProps?: Partial; }; declare function LiquidMetalBlock({ className, shaderClassName, shaderProps, ref, width, height, image, colorBack, colorTint, shape, repetition, softness, shiftRed, shiftBlue, distortion, contour, angle, speed, frame, scale, rotation, offsetX, offsetY, fit, originX, originY, minPixelRatio, maxPixelCount, ...props }: LiquidMetalBlockProps): import("react/jsx-runtime").JSX.Element; export { LiquidMetalBlock }; export type { LiquidMetalBlockProps, LiquidMetalBlockShaderProps }; export default LiquidMetalBlock;