import { State } from "../../reducers/State";
import { MockKey } from "./MockConstants";
/**
 * Mock leaf state, dumb test state with test props
 */
export declare class MockLeafState implements State<typeof MockKey> {
    static readonly Key: typeof MockKey;
    readonly type: typeof MockKey;
    str1: string;
    str2: string;
    constructor(props?: any);
}
