/// export interface Props { text: string; icon: any; color?: "red" | "orange" | "yellow" | "lime" | "green" | "cyan" | "blue" | "purple" | "pink"; onClick?: (...args: any[]) => any; url?: string; className?: string; children?: any; } declare const ActionButton: ({ text, icon, color, onClick, url, children, className }: Props) => JSX.Element; export default ActionButton;