import React from "react"; export type MeshGradientProps = { imageUrl: string | undefined; className?: string; innerClassName?: string; }; /** * Generates a mesh gradient fron an image. Useful for cases where we want to derive a banner image from a profile image. */ export declare const MeshGradient: ({ className, innerClassName, imageUrl, }: MeshGradientProps) => React.JSX.Element; //# sourceMappingURL=MeshGradient.d.ts.map