import { ContainerDefaultProps } from './props';
import '../_util/assert-component2';
Component({
    properties: {
        title: {
            type: String,
        },
        className: {
            type: String,
        },
        style: {
            type: String,
        },
        headerInBox: {
            value: true,
            type: Boolean,
        },
    },
    options: {
        //@ts-ignore
        multipleSlots: true,
        styleIsolation: 'shared',
    },
    props: ContainerDefaultProps,
});