import * as react_jsx_runtime from 'react/jsx-runtime';
import { CSSProperties, ReactNode, ComponentType, ComponentPropsWithoutRef } from 'react';

type Props = {
    innerStyle?: CSSProperties;
    fallback?: ReactNode;
    /**
     * 일반 children 혹은 render function
     */
    children?: ReactNode | ComponentType;
} & Omit<ComponentPropsWithoutRef<'div'>, 'children'>;
declare function Container({ children, fallback, innerStyle, ...restProps }: Props): react_jsx_runtime.JSX.Element;

export { Container, type Props };
