declare namespace Ext { export namespace form { export namespace action { export interface DirectSubmitConfig { clientValidation?: boolean; failure?: string | CallableFunction; form?: Ext.form.Basic; headers?: object; method?: string; params?: object | string; reset?: boolean; scope?: object; submitEmptyText?: boolean; success?: string | CallableFunction; timeout?: number; url?: string; waitMsg?: string; waitTitle?: string; } export class DirectSubmit extends Ext.form.action.Submit { } } } }