import { IDataReader, IDataSource, IKeyword } from '../interfaces';
export declare class AsciiTableDataReader implements IDataReader {
    readonly name: string;
    canReadData(header: IKeyword[]): boolean;
    readDataSize(header: IKeyword[]): number;
    readDataAsync(file: IDataSource, offsetBytes: number, header: IKeyword[]): Promise<(string[] | Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array)[]>;
}
