import { ReactNode } from 'react';

interface ContainerViewsProps {
    children: ReactNode;
    threshold?: number;
    effect?: string;
}

declare const ContainerViews: ({ children, threshold, effect, }: ContainerViewsProps) => JSX.Element;

export { ContainerViews };
