///
import { As } from '@chakra-ui/react';
export interface NotifyTableProps {
data: Array<{
id: string;
name: string;
description: string;
logo: As;
active: boolean;
}>;
onSwitchActive: (id: string, active: boolean) => void;
onEdit: (id: string) => void;
}
export default function NotifyTableCard(props: NotifyTableProps): JSX.Element;