import * as React from 'react'; import { StoreOptions } from '..'; /** * `withTemper` wraps your application by creating the Temper store * @template P * @param {React.FunctionComponent

| React.ComponentType

} Component - This is the Component to wrap, preferably the root of your application * @param {StoreOptions} [options] - These are the options for the store */ declare function withTemper

(Component: React.FunctionComponent

| React.ComponentType

, options?: StoreOptions): React.FunctionComponent; export default withTemper;