import { KaotoSchemaDefinition } from '../models'; interface SchemasState { schemas: { [key: string]: KaotoSchemaDefinition; }; setSchema: (schemaKey: string, schema: KaotoSchemaDefinition) => void; } export declare const useSchemasStore: import("zustand/traditional").UseBoundStoreWithEqualityFn>; export {};