import { ElementType } from 'react'; import { BaseButtonProps } from '../Button/Button'; import { PolymorphicComponentPropsWithRef, PolymorphicForwardRefComponent } from '../shared/types'; export type BaseButtonCondensedProps = Omit; export type ButtonCondensedProps = PolymorphicComponentPropsWithRef; /** A minimal [Button](/docs/button--docs) with styles for situations where you don't need padding, such as inside a table cell. ButtonCondensed accepts all of the same props as [Button](/docs/button--docs), but defaults to `design="minimal"`. If you want to render a simple inline link within a text block, use [Link](/docs/link--docs) instead. */ export declare const ButtonCondensed: PolymorphicForwardRefComponent<"button", BaseButtonCondensedProps>; export default ButtonCondensed;