import type { PropsWithChildren } from 'react';
import type { RendererFC, RendererProps } from 'jamis-core';
import type { ContainerSchema } from './types';
interface ContainerProps extends PropsWithChildren, RendererProps, Omit<ContainerSchema, 'type' | 'className'> {
}
declare const _default: RendererFC<ContainerProps>;
export default _default;
