declare namespace Ext { export namespace data { export namespace amf { export interface ReaderConfig { implicitIncludes?: boolean; keepRawData?: boolean; listeners?: object; messageIndex?: number; messageProperty?: string; metaProperty?: string; model?: string | Ext.data.Model; preserveRawData?: boolean; readRecordsOnFailure?: boolean; record?: string; rootProperty?: string | CallableFunction; successProperty?: string; totalProperty?: string; transform?: string | object | CallableFunction; typeProperty?: string; useSimpleAccessors?: boolean; } export class Reader extends Ext.data.reader.Json { } } } }