import { default as React } from 'react'; import { PolymorphicComponentPropWithRef } from '../../../helpers/polymorphic/types'; export interface CardButtonBaseProps { /** * A single `` to render as the interactive surface. The host element provides the * interaction semantics and applies the hover / active / focus / disabled states to the * card and its blocks. Keep it to one card and avoid nested interactive elements. */ children?: React.ReactNode; /** * Additional class name on the host element. */ className?: string; } export type CardButtonProps = PolymorphicComponentPropWithRef; export declare const CardButton: (props: CardButtonProps) => React.ReactElement | null; export default CardButton;