import { default as SplitterComp } from './Splitter.vue';
import { default as Panel } from './_Panel.vue';
type CompoundedComponent = typeof SplitterComp & {
Panel: typeof Panel;
};
declare const Splitter: CompoundedComponent;
export { Splitter };
export * from './interface';