export interface TxJobComponentOptions { wait: boolean; waitfor: string | Symbol[]; timeout: number; retry: number; } declare let defaultComponentOptions: TxJobComponentOptions; export { defaultComponentOptions }; export declare class TxJobComponentOptionsChecker { constructor(); static isWait(options: TxJobComponentOptions): boolean; static isWaitFor(options: TxJobComponentOptions): boolean; static isTimeOut(options: TxJobComponentOptions): boolean; static isRetry(options: TxJobComponentOptions): boolean; }