export interface FetchOptions { force?: boolean; cacheTimeout?: number; } /** * Fetch companies from API or cache */ export declare function fetchCompanies(options?: FetchOptions): Promise; /** * Fetch projects from API or cache */ export declare function fetchProjects(options?: FetchOptions): Promise; /** * Fetch standups from API or cache */ export declare function fetchStandups(options?: FetchOptions): Promise; /** * Fetch all data from API (companies, projects, standups) */ export declare function fetchData(options?: FetchOptions): Promise; //# sourceMappingURL=data.d.ts.map