import type { SchemaArrayValue, SchemaValue } from "../core/index.js"; type ArrayAssert = (arr: SchemaArrayValue | null | undefined) => asserts arr is T[] | undefined; export declare const assertStrings: ArrayAssert; export declare const assertFiles: ArrayAssert; export declare function assertFile(v: unknown): asserts v is File | undefined; export {};