import React, { HTMLAttributes } from 'react';
import type { CSS } from '../theme/stitches.config';
interface Props {
css?: CSS;
width?: number;
height?: number;
size?: number;
strokeWidth?: number;
fill?: string;
className?: string;
}
declare type NativeAttrs = Omit, keyof Props>;
export declare type CheckmarkProps = Props & NativeAttrs;
export declare const stroke: {
(): string;
name: string;
};
declare const Checkmark: React.FC;
export default Checkmark;