import * as React from 'react'; import Svg, { type SvgProps } from 'react-native-svg'; export interface IconProps extends Omit { /** Icon size in dp. Sets both width and height. Defaults to 24. */ readonly size?: number; /** Stroke / fill color. Defaults to `currentColor` for inheritance. */ readonly color?: string; /** Stroke width of the glyph paths. Defaults to 2. */ readonly strokeWidth?: number; } export interface IconDefinition { readonly name: string; readonly viewBox: string; readonly path: string; } export declare function createIcon(definition: IconDefinition): React.ForwardRefExoticComponent>; //# sourceMappingURL=createIcon.d.ts.map