/// import { Options } from "./types"; export interface ContainerProps { children: any; simple?: boolean; options?: Options; code: string; xs?: any; sm?: any; data?: any; lazyOptions?: any; } /** * A container, that can be "simple" or not, used for layout purposes or specific objects like video * @returns */ declare const Container: ({ children, simple, options, code, xs, sm, lazyOptions }: ContainerProps) => JSX.Element; export default Container;