import type { BaseProps, ForwardRefForwardPropsComponent } from '../../types'; import type { ButtonProps } from './Button'; export interface BareButtonProps extends BaseProps { /** Text or content for the Button. */ children: ButtonProps['children']; /** * Determines if the Button will be disabled. * @default false */ disabled?: ButtonProps['disabled']; /** A location to navigate to. Passing an href will render a Link styled as a Button. */ href?: ButtonProps['href']; /** * Controls the behavior of a Button within a Form. * @default 'button' */ type?: ButtonProps['type']; /** Ref forwarded to the wrapping element. */ ref?: ButtonProps['ref']; } export declare const StyledBareButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLButtonElement>, never>> & string; declare const BareButton: ForwardRefForwardPropsComponent; export default BareButton; //# sourceMappingURL=BareButton.d.ts.map