import * as React from 'react'; import type { BaseButtonProps, SharedStyleProps } from './types'; export interface ButtonComponentType { (props: BaseButtonProps & Omit, keyof BaseButtonProps | keyof SharedStyleProps> & SharedStyleProps | keyof JSX.IntrinsicElements>): JSX.Element; displayName?: string; } declare const ForwardedButton: ButtonComponentType; export default ForwardedButton;