export interface Namespace { (s: string): string; } export interface Options { namespace: Namespace; } export declare const defaultNamespace: (actionType: string) => string; export declare const defaultOptions: { namespace: (actionType: string) => string; };