import { type StyleProp, type ViewStyle } from 'react-native'; import type { ColorType, IconType, SizeType, ThemeKeys } from '../../utils/TypesUtil'; export interface IconBoxProps { icon: IconType; size?: Exclude; iconColor?: ColorType; iconSize?: Exclude; background?: boolean; backgroundColor?: ThemeKeys; border?: boolean; borderColor?: ThemeKeys; borderSize?: number; style?: StyleProp; } export declare function IconBox({ size, iconColor, icon, iconSize, background, backgroundColor, border, borderColor, borderSize, style }: IconBoxProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map