import React, { type ReactNode } from 'react'; import { type StyleProp, type TextStyle, type ViewStyle } from 'react-native'; interface Props { title?: string; icon?: ReactNode; outline?: boolean; color?: string; styles?: StyleProp; onPress: () => void; type?: 'primary' | 'text' | 'link' | 'dashed'; textStyleProps?: StyleProp; size?: 'large' | 'default' | 'small'; onLongPress?: () => void; inline?: boolean; isShadow?: boolean; iconPosition?: 'left' | 'right'; textLine?: number; iconExtra?: boolean; loading?: boolean; disable?: boolean; radius?: number; } declare const Button: (props: Props) => React.JSX.Element; export default Button; //# sourceMappingURL=Button.d.ts.map