import { default as React } from 'react'; import { ButtonProps as PrimitiveButtonProps } from '../button'; export type ButtonProps = PrimitiveButtonProps & { disclaimer?: string; }; /** * The button element is used when you want a trigger in the card * When this card button element is used, the entire card is clickable */ export declare const Button: React.ForwardRefExoticComponent>;