import { type PropType } from 'vue';
import type { CodeLayoutConfig } from './CodeLayout';
export interface CodeLayoutBaseInstance {
    getRef: () => HTMLElement | undefined;
    saveGridLayoutDataToConfig: () => void;
}
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
    config: {
        type: PropType<CodeLayoutConfig>;
        required: true;
    };
}, {
    getRef: () => HTMLElement | undefined;
    saveGridLayoutDataToConfig: () => void;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
    draggerDragSplit: (...args: any[]) => void;
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
    config: {
        type: PropType<CodeLayoutConfig>;
        required: true;
    };
}>> & {
    onDraggerDragSplit?: ((...args: any[]) => any) | undefined;
}, {}, {}>, Partial<Record<any, (_: {}) => any>> & {
    titleBarIcon?(_: {}): any;
    titleBarMenu?(_: {}): any;
    titleBarCenter?(_: {}): any;
    titleBarRight?(_: {}): any;
    activityBar?(_: {}): any;
    statusBar?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
