import { Schema } from '@klayr/codec';
interface Named {
    name: string;
    key: Buffer;
    schema: Schema;
}
export type Constructor = new (...args: any) => Named;
export type StoreInstance<T> = Omit<T, 'addMutableDependencies' | 'addImmutableDependencies' | 'addDependencies'>;
export {};
