import Stage from './components/StageCore';
import { KonvaNodeConstructor } from './types';
import { useImage } from './use-image';
export { useImage };
export type { KonvaNodeConstructor, VueKonvaRef } from './types';
export { Stage };
export * from './components-core';
declare const VueKonvaCore: {
    install: (app: any, options?: {
        prefix?: string;
        customNodes?: Record<string, KonvaNodeConstructor>;
    }) => void;
};
export default VueKonvaCore;
