import React from 'react'; import { AnyAction } from 'redux'; import { Theme } from '@plurid/plurid-themes'; import { PluridPlaneComponentProperty } from '@plurid/plurid-react'; import { Test } from '~server/data/interfaces'; export interface TestOwnProperties { plurid: PluridPlaneComponentProperty; } export interface TestStateProperties { stateGeneralTheme: Theme; stateInteractionTheme: Theme; stateTests: Test[]; } export interface TestDispatchProperties { } export type TestProperties = TestOwnProperties & TestStateProperties & TestDispatchProperties; declare const Test: React.FC; declare const ConnectedTest: import("react-redux").ConnectedComponent, { plurid: PluridPlaneComponentProperty; context?: React.Context> | undefined; store?: import("redux").Store | undefined; }>; export default ConnectedTest;