import React from 'react'; import Group from './group'; import { ButtonProps } from './interface'; declare const ButtonComponent: React.ForwardRefExoticComponent, "className" | "onClick" | "type"> & { href: string; target?: string; anchorProps?: React.HTMLProps; } & Omit, "className" | "onClick" | "type">> & React.RefAttributes> & { __BYTE_BUTTON: boolean; Group: typeof Group; }; export default ButtonComponent; export { ButtonProps };