import React from "react";
import { OverviewItemActionsProps } from "./../OverviewItem/OverviewItemActions";
export type CardOptionsProps = Omit<OverviewItemActionsProps, "hiddenInteractions">;
/**
 * Container for elements that allow user-interaction, e.g. buttons or context menus.
 * Can contain multiple of them.
 * Is displayed right-aligned in the `CardHeader`.
 */
export declare const CardOptions: ({ children, className, ...otherProps }: CardOptionsProps) => React.JSX.Element;
export default CardOptions;
