import * as React from "react"; import type { MergeElementProps } from "../../typings"; interface CardActionBarBaseProps { /** The content of the component. */ children?: React.ReactNode; /** * Append to the classNames applied to the component so you can override or * extend the styles. */ className?: string; } export declare type CardActionBarProps = MergeElementProps<"div", CardActionBarBaseProps>; declare type Component = { (props: CardActionBarProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const CardActionBar: Component; export default CardActionBar;