import * as React from "react"; import type { IconWrapperProps } from "./IconWrapper"; export interface TickIconProps extends IconWrapperProps { title?: string; decorative: boolean; } declare const TickIcon: React.ForwardRefExoticComponent>; export { TickIcon };