import { Resource } from './types';
export declare type Platform = 'web-mobile' | 'web-desktop' | string;
export declare class Reader {
    _platform: Platform;
    constructor(platform?: Platform);
    read(filename: string): string;
    readAll(dir: string, _vendor: string): Resource;
}
