import { FC } from 'react'; import { BaseButtonProps } from '../BaseButton/BaseButton.js'; import { ButtonSize } from './types.js'; import 'react-native'; import '../BaseButton/types.js'; interface ButtonProps extends BaseButtonProps { /** * Border radius ratio for the button, determines the curvature of the button's corners. * Default is 0.333 (1/3 of the button's height). */ brRatio?: number; /** * Size of the button. * Adjusts the overall size of the button and the icon inside it (if any). */ size?: ButtonSize; } /** * Button is a UI component used for triggering actions. * It supports customizable size, border radius, and appearance, with optional text or icon content. */ declare const Button: FC; export { Button, type ButtonProps };