import { AuthorizationState } from './reducer'; import { Authorization } from './types'; export declare const getState: (state: any) => AuthorizationState; export declare const getData: (state: any) => Authorization[]; export declare const getLoading: (state: any) => import("../loading").LoadingState; export declare const isLoading: (state: any) => boolean; export declare const getError: (state: any) => string | null; export declare const getAuthorizationFlowError: (state: any) => string | null; export declare const getTransactions: (state: any) => import("../transaction").Transaction[]; export declare const getAllowTransactions: (state: any) => import("../transaction").Transaction[]; export declare const getApproveTransactions: (state: any) => import("../transaction").Transaction[]; export declare const isAuthorizing: (state: any) => boolean;