import { type StyleProp, type ViewStyle } from 'react-native'; import type { ColorType, IconType, SizeType, ThemeKeys } from '../../utils/TypesUtil'; export interface IconLinkProps { icon: IconType; onPress?: () => void; size?: Exclude; iconColor?: ColorType; disabled?: boolean; background?: boolean; style?: StyleProp; backgroundColor?: ThemeKeys; pressedColor?: ThemeKeys; testID?: string; } export declare function IconLink({ icon, onPress, size, iconColor, backgroundColor, pressedColor, disabled, style, testID }: IconLinkProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map