import React from 'react'; import { icons12, icons16, icons24, IconsFlags } from './assets'; import { ShapeFills } from '../../themes/types'; export type Icons12 = keyof typeof icons12; export type Icons16 = keyof typeof icons16; export type Icons24 = keyof typeof icons24; export type Icons = Icons12 | Icons16 | Icons24 | IconsFlags; export type IconProps = { id?: string; color?: ShapeFills; name: Icons; onPress?: () => void; testID?: string; width?: React.CSSProperties['width']; height?: React.CSSProperties['height']; fill?: boolean; altText?: string; }; declare const Icon: React.ForwardRefExoticComponent>; export { icons16, icons24 }; export default Icon;