import './RuleStackCard.css'; import React from 'react'; import { AvatarData } from '../AutomationAvatar/AutomationAvatar'; export type RuleStackCardProps = { title?: string; active?: boolean; data?: any; avatars?: AvatarData[]; actionList: any; modified: string; type?: 'text' | 'image'; footerText: ""; enableSwitch: boolean; description: ""; onSwitchClick: (e: any) => {}; onRuleStackClick: () => {}; }; declare const RuleStackCard: (props: RuleStackCardProps) => React.JSX.Element; export default RuleStackCard;