import type { Transaction, InitialRender } from '../types';
export declare function importZustandStore(): string;
export declare function testInitialState(initialRender: InitialRender): string;
export declare function testStateChangesAct(transactions: Transaction<any>[]): string;
export declare function testStateChangesExpect([propertyName, newValue]: [string, any]): string;
export declare function generateActLine<T extends any[]>(t: Transaction<T>): string;
