import type { ButtonProps as AntButtonProps } from '@ant-design/react-native/lib/button';
import type { ReactNode } from 'react';

export interface ButtonProps extends AntButtonProps {
  children?: ReactNode;
  block?: boolean;
  theme?: 'primary' | 'success' | 'danger' | 'warning' | 'ghost' | 'light';
  outline?: boolean;
}
