import { Namespace, Project, ProjectDetail } from "../models/gitlab/gitlab"; export declare const MOCK_GIT_NAMESPACES: Namespace[]; export declare const MOCK_GIT_RECENT_PROJECTS: Project[]; export declare const MOCK_GIT_PERSONAL_PROJECTS: Project[]; export declare const MOCK_PROJECT_DETAIL: ProjectDetail; export declare const MOCK_PROJECT_BRANCH: { name: string; merged: boolean; protected: boolean; developers_can_push: boolean; developers_can_merge: boolean; can_push: boolean; default: boolean; commit: { id: string; short_id: string; created_at: string; title: string; message: string; author_name: string; author_email: string; authored_date: string; committer_name: string; committer_email: string; committed_date: string; }; };