import React from "react"; type Props = React.HTMLAttributes & { id: string; gradient: string; }; export declare const LinearGradient: ({ id, gradient, ...rest }: Props) => React.JSX.Element; export {};