/** * 请在 /packages/pandora/src/index.ts 中导入该组件 */ import React from 'react'; import { type ButtonProps } from './interface'; import Group from './group'; declare const ButtonComponent: React.ForwardRefExoticComponent, "type" | "className" | "onClick"> & { href: string; target?: string; anchorProps?: React.HTMLProps; } & Omit, "type" | "className" | "onClick">> & React.RefAttributes> & { __BYTE_BUTTON: boolean; Group: typeof Group; }; export default ButtonComponent; export { ButtonProps };