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