import type { ContextExState } from '@ariestools/sdk-react/shared'; import type { Dispatch } from 'react'; /** Context state for the selected schema name and known schema list. */ export type SchemaContextState = ContextExState<{ /** @field The currently selected XYO Schema */ schema?: string; /** @field The list of known available schema */ schemaList?: string[]; /** @field Function to set the selected Schema */ setSchema?: Dispatch; /** @field Function to set the list of known available schema */ setSchemaList?: Dispatch; }>; //# sourceMappingURL=State.d.ts.map