import { juggler } from '@loopback/repository'; export declare class CheckInUsersServiceDataSource extends juggler.DataSource { static dataSourceName: string; static readonly defaultConfig: { name: string; connector: string; baseURL: string; crud: boolean; options: { baseUrl: string; headers: { accept: string; "content-type": string; }; }; operations: ({ template: { method: string; url: string; headers: { Authorization: string; }; query: { filter: string; }; body?: undefined; }; functions: { getMoodFactors: string[]; getSleep?: undefined; updateUserSecondory?: undefined; }; } | { template: { method: string; url: string; headers: { Authorization: string; }; query: { filter: string; }; body?: undefined; }; functions: { getSleep: string[]; getMoodFactors?: undefined; updateUserSecondory?: undefined; }; } | { template: { method: string; url: string; headers: { Authorization: string; }; body: string; query?: undefined; }; functions: { updateUserSecondory: string[]; getMoodFactors?: undefined; getSleep?: undefined; }; })[]; }; constructor(dsConfig?: object); }