import type { ArrayAssert, StringAssert } from './ApproxStructures'; export type CombinedAssert = StringAssert & ArrayAssert; declare const is: (target: string) => CombinedAssert; declare const startsWith: (target: string) => CombinedAssert; declare const contains: (target: string) => CombinedAssert; declare const measurement: (amount: number, unit: string, margin: number) => CombinedAssert; declare const none: (message?: string) => CombinedAssert; declare const has: (target: T) => CombinedAssert; declare const hasPrefix: (prefix: string) => CombinedAssert; declare const not: (target: T) => CombinedAssert; declare const missing: () => string; export { is, startsWith, contains, none, measurement, has, hasPrefix, not, missing }; //# sourceMappingURL=ApproxComparisons.d.ts.map