import React from 'react';
import { BoxProps } from '@mantine/core';
import { NewsletterTopic } from "../../../premiumNewsletter/interfaces/types";
type _TopicSlideProps = {
    topic: NewsletterTopic;
    active?: boolean;
    onClick(topic: NewsletterTopic, status?: boolean): void;
} & Omit<BoxProps, 'onClick'>;
export declare const _TopicSlide: ({ topic, active, onClick, ...rest }: _TopicSlideProps) => React.JSX.Element;
export {};
