/// <reference types="react" />
import type { IconWeight } from './Icon';
export declare const renderPathForWeight: (weight: IconWeight, path: PaintFunction) => React.ReactNode | null;
export declare type PaintFunction = () => React.ReactNode | null;
export declare type RenderFunction = (weight: IconWeight, color: string) => React.ReactNode | null;
