import { AppState } from './redux/reducer'; export declare type GQLError = any; export declare type GQLErrorChecker = (gqlError: GQLError) => boolean; export declare type GQLResponse = { errors?: GQLError[]; }; export declare const labelTooLongCheck: (err: GQLResponse) => boolean; export declare const notLoggedInChecked: (err: GQLResponse) => boolean; export declare function unauthorizedTroubleShoot(projectId: string | undefined): void; export declare function troubleShootLabelChangeRequest(state: AppState, err: any): void;