import type { Table } from '../../table/index.js'; import type { Key } from '../../table/types/index.js'; import type { EntityAttributes, SchemaOf } from './entityAttributes.js'; export declare const doesSchemaValidateTableSchemaKey: (schema: SchemaOf, key?: Key) => boolean; export declare const doesSchemaValidateTableSchema: (schema: SchemaOf, table: Table) => boolean;