import React from "react"; import { Button } from "../components/Button"; import { Counter } from "../components/Counter"; interface NotificationButtonProps { buttonProps: React.ComponentProps; counterProps: React.ComponentProps; className?: string; } declare const NotificationButton: ({ className, buttonProps, counterProps, }: NotificationButtonProps) => React.JSX.Element; export { NotificationButton }; //# sourceMappingURL=NotificationButton.d.ts.map