import type { NativeIconBaseComponentProps, NativeIconBaseComponentType, NativeIconBaseProps, NativeIconComponentProps, NativeIconComponentType, NativeIconContentBaseProps, NativeIconContentRefType, NativeIconRefType, NativeIconsetBaseComponentType, NativeIconVariantsMapType } from './types'; export * from '../common/createIconsetFactory'; export * from '../common/types'; export { createNativeFamily as createFamily } from './createNativeFamily'; export { createNativeIcon as createIconComponent } from './createNativeIcon'; export { createNativeIconset as createIconset } from './createNativeIconset'; export { createNativeVariantsMap as createVariantsMap } from './createNativeVariantsMap'; export { NativeIconContent as IconContent } from './NativeIconContent'; export type IconBaseComponentProps = NativeIconBaseComponentProps; export type IconBaseComponentType = NativeIconBaseComponentType; export type IconsetBaseComponentType = NativeIconsetBaseComponentType; export type IconVariantsMapType = NativeIconVariantsMapType; export type IconComponentProps = NativeIconComponentProps; export type IconComponentType = NativeIconComponentType; export type IconBaseProps = NativeIconBaseProps; export type IconRefType = NativeIconRefType; export type IconContentBaseProps = NativeIconContentBaseProps; export type IconContentRefType = NativeIconContentRefType; export declare const Icon: IconComponentType; export default Icon;