/// interface SimpleContainerProps { code: string; bgType?: number; videoOptions?: any; lottieOptions?: any; onScroll?: () => void; onClick?: () => void; simple?: boolean; children: any; className: string; } /** * A simple container, only called by KapixContainer * in "simple" mode, className is "outer-style kapix-simple", else it is "property-style ${propertyClass}" */ declare const SimpleContainer: ({ code, onScroll, onClick, simple, children, className, bgType, videoOptions, lottieOptions }: SimpleContainerProps) => JSX.Element; export default SimpleContainer;