import { Attributes, ServiceAttributes, ServiceProps } from './types'; declare const resolvers: ({ tokenValue }: ServiceProps) => { Query: { GetDepartureBoard(obj: any, queryAttributes: Attributes): Promise; GetDepBoardWithDetails(obj: any, queryAttributes: Attributes): Promise; GetArrivalBoard(obj: any, queryAttributes: Attributes): Promise; GetArrBoardWithDetails(obj: any, queryAttributes: Attributes): Promise; GetArrivalDepartureBoard(obj: any, queryAttributes: Attributes): Promise; GetArrDepBoardWithDetails(obj: any, queryAttributes: Attributes): Promise; GetNextDepartures(obj: any, queryAttributes: Attributes): Promise; GetNextDeparturesWithDetails(obj: any, queryAttributes: Attributes): Promise; GetFastestDepartures(obj: any, queryAttributes: Attributes): Promise; GetFastestDeparturesWithDetails(obj: any, queryAttributes: Attributes): Promise; GetServiceDetails(obj: any, queryAttributes: ServiceAttributes): Promise; }; }; export default resolvers;