import { State, NgrxRequest, NgrxRequestStatus } from './reducer'; import { MemoizedSelectorWithProps } from '@ngrx/store/src/selector'; interface Props { id: string; } export declare const requests: import("@ngrx/store/src/selector").MemoizedSelector; export declare const request: (id: string) => [MemoizedSelectorWithProps, Props]; export declare const requestStatus: (id: string) => [MemoizedSelectorWithProps, Props]; export declare const requestMeta: (id: string) => [MemoizedSelectorWithProps, Props]; export declare const isIdle: (id: string) => [MemoizedSelectorWithProps, Props]; export declare const isCanceled: (id: string) => [MemoizedSelectorWithProps, Props]; export declare const isError: (id: string) => [MemoizedSelectorWithProps, Props]; export declare const isSuccess: (id: string) => [MemoizedSelectorWithProps, Props]; export declare const isWorking: (id: string) => [MemoizedSelectorWithProps, Props]; export {};