import React from 'react'; import type { ColorValue, ViewProps } from 'react-native'; interface CreateIconOptions { viewBox?: string; path?: React.ReactElement | React.ReactElement[]; d?: string; displayName?: string; defaultProps?: any; type?: any; } export interface IIconProps extends ViewProps { } export type IIconComponentType = React.ForwardRefExoticComponent; export declare function createIcon({ Root, path, d, ...initialProps }: { Root: React.ComponentType; } & CreateIconOptions): IIconComponentType; export {}; //# sourceMappingURL=index.web.d.ts.map