import { type ComponentType } from '../model/ComponentType'; export declare type StrokeLinecap = 'inherit' | 'butt' | 'round' | 'square'; export declare type StrokeLinejoin = 'inherit' | 'round' | 'miter' | 'bevel'; export interface SVGPathOptions { fill?: string; stroke?: string; strokeLinecap?: StrokeLinecap; strokeLinejoin?: StrokeLinejoin; strokeWidth?: string; strokeMiterlimit?: string; } export interface SVGPath extends SVGPathOptions { d: string; } export interface SVGProps extends SVGPathOptions, ComponentType { viewBox?: string; paths: SVGPath[]; width?: string; height?: string; } export declare const SVG: import("@redneckz/uni-jsx").UNIComponent;