import { FC, PropsWithChildren } from 'react'; export interface ButtonProps extends React.ButtonHTMLAttributes { keyname?: string; /** Can be shown or hidden with controls */ visible?: boolean; /** "index" refers to the use of indexes to control the order of controls, which can provide more flexible API encapsulation. */ index?: number; } export declare const Button: FC>;