/** @public */ export type Step = { name: string; status: string; conclusion?: string; number: number; started_at?: string; completed_at?: string; }; /** @public */ export type Job = { html_url?: string; status: string; conclusion?: string; started_at: string; completed_at?: string; id: number; name: string; steps?: Step[]; }; /** @public */ export type Jobs = { total_count: number; jobs: Job[]; }; /** @public */ export declare enum BuildStatus { 'success' = 0, 'failure' = 1, 'pending' = 2, 'running' = 3 } /** @public */ export type Branch = { name: string; }; /** @public */ export type Branches = { default_branch: string; branches: Branch[]; }; /** @public */ export interface RouterProps { view?: 'cards' | 'table'; }