///
import { As } from '@chakra-ui/react';
export interface NotifyTableRowProps {
name: string;
description: string;
logo: As;
active: boolean;
onSwitchActive: (active: boolean) => void;
onEdit: () => void;
}
export declare function NotifyTableRow(props: NotifyTableRowProps): JSX.Element;
export default NotifyTableRow;