export declare type ParsingAction = A; export declare type RuleComponentMeta = { name?: string; action?: ParsingAction; }; export interface RuleComponent> { meta: RuleComponentMeta; componentName?: string | undefined; count?: (filter?: (i: any) => boolean) => number; withAction

(actionString: P): this; }