import React from 'react'; import { Box } from '../Box'; declare type SizeButton = 'large' | 'medium' | 'small'; declare type VariantButton = 'primary' | 'outlined' | 'secondary'; declare type ArrowButtonProps = React.ComponentProps & { onPress: () => void; pos: 'left' | 'right'; variant?: VariantButton; size?: SizeButton; label?: string; disabled?: boolean; loading?: boolean; }; /** * @variant primary, outlined or secondary * @pos left or right * @size small, medium or large (optional) default small * @onPress Called when the button touch is released, but not if cancelled * @label right pos label (optional) * @disabled right pos disabled (optional) */ export declare const ArrowButton: ({ onPress, size, variant, pos, disabled, label, loading, ...props }: ArrowButtonProps) => JSX.Element; export {};