import { ComponentOverridableForwardRefComponentPropsFactory } from '../utils/jsx-types'; import { BaseCardComponent, BaseCardProps } from './typings'; export type BaseCardComponentProps = ComponentOverridableForwardRefComponentPropsFactory; /** * BaseCard is a versatile card component that can be used as a div, link, or custom component. * It supports four types: default, action, overflow, and toggle, each with different header actions. */ declare const BaseCard: import("react").ForwardRefExoticComponent, "children" | "title" | "defaultChecked" | "className" | "disabled" | "type" | "checked" | "readOnly" | "options" | "description" | "actionName" | "actionVariant" | "onActionClick" | "onOptionSelect" | "onToggleChange" | "toggleSize" | "toggleLabel" | "toggleSupportingText"> & BaseCardProps, "component"> & { component?: BaseCardComponent | undefined; } & import("react").RefAttributes>; export default BaseCard;