import { type PropType } from 'vue';
import type { CodeLayoutPanelInternal } from './CodeLayout';
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
    group: {
        type: PropType<CodeLayoutPanelInternal>;
        required: true;
    };
    /**
     * Is horizontal?
     *
     * Default: true
     */
    horizontal: {
        type: BooleanConstructor;
        default: boolean;
    };
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
    group: {
        type: PropType<CodeLayoutPanelInternal>;
        required: true;
    };
    /**
     * Is horizontal?
     *
     * Default: true
     */
    horizontal: {
        type: BooleanConstructor;
        default: boolean;
    };
}>>, {
    horizontal: boolean;
}, {}>, {
    panelRender?(_: any): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
