import type { ComponentType } from 'react'; import type { Node } from '../types.ts'; export declare function assertIsNode(node: unknown, { expectation, isNot }: { expectation: string; isNot?: boolean; }): void; export declare function assertIsType(type: unknown, { expectation, isNot }: { expectation: string; isNot?: boolean; }): void; export declare function diffs(element: Node[], props: Record, expand?: boolean): string; export declare function printType(type: string | ComponentType): string; export declare function diffPropsForNode(node: Node, props: Record, { expand }: { expand?: boolean | undefined; }): string | null; export declare function getObjectSubset(object: any, subset: any): any; export declare function pluralize(word: string, count: number): string; export declare function printReceivedWithHighlight(text: string, start: number, length: number): string; //# sourceMappingURL=utilities.d.ts.map