import type { SVGProps } from "react"; interface Props extends SVGProps { primarycolor?: string; secondarycolor?: string; } declare const SvgTick: ({ primarycolor, secondarycolor, ...props }: Props) => import("react/jsx-runtime").JSX.Element; export default SvgTick;