import type { SvgProps } from 'react-native-svg'; import type { ColorType, IconType, SizeType } from '../../utils/TypesUtil'; export type IconProps = SvgProps & { name: IconType; size?: Exclude<SizeType, 'xl'>; color?: ColorType; style?: SvgProps['style']; }; export declare function Icon({ name, width, height, color, size, style, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map