import * as React from 'react'; export interface CheckmarkProps extends React.HTMLAttributes { size?: number; color?: string; delay?: number; } /** * Checkmark — the completion mark. The stroke draws itself on and the mark * settles: the finished thing rises and the daylight appears beneath it. * (Was a forge-branded "molten seal" that flared gold; the heat register is * retired — `forge-temper` is now the spine's `sol-lift-settle`.) */ declare function Checkmark({ size, color, delay, className, ...props }: CheckmarkProps): import("react/jsx-runtime").JSX.Element; export { Checkmark };