import * as React from 'react';
interface SwatchIconProps {
    className?: string;
    fill?: string;
    stroke?: string;
    strokeWidth?: string | number;
    size?: number;
}
export declare const SwatchIcon: React.MemoExoticComponent<({ className, fill, stroke, strokeWidth, size }: SwatchIconProps) => React.JSX.Element>;
export {};
