import React from "react"; interface CardIconButtonProps { onClick: () => any; icon: any; text: string; } export declare const CardIconButton: ({ onClick, icon, text }: CardIconButtonProps) => React.JSX.Element; export {};