import * as React from 'react'; import { type ImageStyle, type StyleProp, type TouchableOpacityProps, type ViewStyle } from 'react-native'; import { iconRegistry } from './iconRegistry'; export type Icon3DTypes = keyof typeof iconRegistry; export interface Icon3DProps extends TouchableOpacityProps { /** * The name of the icon */ icon: Icon3DTypes; /** * An optional size for the icon. If not provided, the icon will be sized to the icon's resolution. */ size?: number; /** * Style overrides for the icon image */ style?: StyleProp; /** * Style overrides for the icon container */ containerStyle?: StyleProp; /** * An optional function to be called when the icon is pressed */ onPress?: TouchableOpacityProps['onPress']; } /** * A component to render a registered icon. * It is wrapped in a if `onPress` is provided, otherwise a . */ export declare const Icon3D: (props: Icon3DProps) => React.JSX.Element; //# sourceMappingURL=index.d.ts.map