import React from 'react'; import { Colors } from '@/themes'; export type LinkButtonProps = { children: string; href?: string; openNewWindow?: boolean; onPress?: (event: React.MouseEvent) => void; testID?: string; color?: Colors; variant?: 'default' | 'small' | 'medium'; download?: string | boolean; disabled?: boolean; }; declare const LinkButton: ({ href, children, onPress, openNewWindow, testID, color, variant, download, disabled, }: LinkButtonProps) => React.JSX.Element; export default LinkButton;