export declare const OK = "OK"; export declare const ERROR = "ERROR"; export declare const INIT = "INIT"; export declare type STATUS = typeof OK | typeof ERROR | typeof INIT; export interface StoreState { data: T; form: T; submitRequired: boolean; loadingGet: boolean; loadingPost: boolean; status: STATUS; statusMessage: string; } export interface Action { type: Type; } export interface StoreDispatchProps { fetch: (data?: Partial) => any; edit: (data?: Partial) => any; } export declare const storeInit: (data: T) => StoreState;