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