import { NoteProps, NotePropsMeta } from "./foundation"; import { SchemaModuleProps } from "./typesv2"; export declare type WriteNoteOpts = { key: K; note: NoteProps; }; export declare type WriteNoteMetaOpts = { key: K; noteMeta: NotePropsMeta; }; export declare type QuerySchemaOpts = { qs: string; }; export declare type WriteSchemaOpts = { key: K; schema: SchemaModuleProps; };