export interface CardFooterProps { editLink: string; editTitle: string; removeTitle: string; showRemoveButton?: boolean; showEditButton?: boolean; onClickRemove: () => void; onActionClick?: () => void; confirmationRemoveMessage: string; actionText?: string; showActionButton?: boolean; className?: string; [props: string]: any; } export declare const CardFooter: ({ onActionClick, actionText, editLink, editTitle, removeTitle, onClickRemove, confirmationRemoveMessage, showActionButton, showRemoveButton, showEditButton, className, ...props }: CardFooterProps) => import("@emotion/react/jsx-runtime").JSX.Element;