declare namespace Ext { export namespace form { export namespace action { export interface StandardSubmitConfig { 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; target?: string; timeout?: number; url?: string; waitMsg?: string; waitTitle?: string; } export class StandardSubmit extends Ext.form.action.Submit { } } } }