import { DemoData } from './interfaces.js';
export declare class DemoService {
    static get data(): DemoData;
    static get asyncData(): Promise<DemoData>;
    static getData(type: 'system' | 'infrastructure' | 'food'): DemoData;
}
