import { ReactNode } from 'react';
export type AtmosphereType = 'snow' | 'hearts' | 'spooky' | 'none';
interface Props {
  children: ReactNode;
  animation?: AtmosphereType;
  disabled?: boolean;
}
export declare const Atmospheres: ({
  children,
  animation,
  disabled,
}: Props) => import('react/jsx-runtime').JSX.Element;
export {};
