import type { CnButtonProps } from "../../cn-button";
import type { CnCheckboxProps } from "../../cn-checkbox";
export interface CardFootActionsProps {
    checkBox?: CnCheckboxProps;
    buttons?: CnButtonProps[];
}
