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