import { ComponentPropsWithRef } from 'react'; export type ButtonSizeType = '36' | '42' | '50' | '60'; type ButtonVariantType = 'outlined' | 'solid' | 'outline_filled' | 'outline_gray'; export interface ButtonProps extends ComponentPropsWithRef<'button'> { size?: ButtonSizeType; variant?: ButtonVariantType; rounded?: boolean; needThrottle?: boolean; isLoading?: boolean; } export {};