/**
 * Maps state to a value.
 */
export declare type Selector<TState = any, TResult = any> = (state: TState | undefined) => TResult;
