import { Observable } from 'rxjs';
export declare class ReferencesService {
    constructor();
    static getData(apiUrl: string): Observable<Array<{
        id: number;
        code: string;
        label: any;
    }>>;
}
