import React from 'react'; import { icons } from './icons'; import { CreateIconProps } from './createIcon'; export type IconKeys = keyof typeof icons; type IconProps = CreateIconProps & { icon: IconKeys; }; declare const Icon: ({ size, color, icon, testID, title, borderWidth, ...props }: IconProps) => React.ReactElement; export default Icon;