import { Lookup } from '@prutech/components'; import * as AssignmentLookupActions from '../actions/assignment-lookups.actions'; import { AssignmentLookupState } from '../state/assignment-lookups.state'; export declare function AssignmentLookupReducer(state: AssignmentLookupState, action: AssignmentLookupActions.GetAssignmentLookupActions): AssignmentLookupState; export declare const getLoadingAssignmentLookup: (state: AssignmentLookupState) => boolean; export declare const getAssignmentLookupErrors: (state: AssignmentLookupState) => string[]; export declare const getSitesLookup: (state: AssignmentLookupState) => Lookup[]; export declare const getOutcomeLookup: (state: AssignmentLookupState) => Lookup[];