import { type PressableProps as NativeProps, type StyleProp, type ViewStyle } from 'react-native'; import type { ColorType, IconType, SizeType } from '../../utils/TypesUtil'; export type LinkProps = NativeProps & { children: string; disabled?: boolean; iconLeft?: IconType; iconRight?: IconType; style?: StyleProp; size?: Exclude; color?: ColorType; }; export declare function Link({ children, disabled, iconLeft, iconRight, onPress, style, size, color, ...rest }: LinkProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map