import { AttributeWithCacheKey } from '../../../attribute-with-cache-key'; import { OperatorImplementation, OperatorInitialization } from '../../../operators'; interface GatherAttributes extends AttributeWithCacheKey { readonly axis: number; } export declare const gather: OperatorImplementation; export declare const parseGatherAttributes: OperatorInitialization; export {};