export * from './base'; export * from './multi'; export * from './exact'; export * from './operators'; export * from './all'; import { NamespacedPrimaryIndex, NamespacedSecondaryIndex, AnonymousPrimaryIndex, AnonymousSecondaryIndex } from '../indexes'; import { NamespacedPrimaryAll, NamespacedSecondaryAll, AnonymousPrimaryAll, AnonymousSecondaryAll } from './all'; /** * * Builds a query from given index. * */ export declare function indexBy(i: NamespacedSecondaryIndex): NamespacedSecondaryAll; export declare function indexBy(i: AnonymousSecondaryIndex): AnonymousSecondaryAll; export declare function indexBy(i: NamespacedPrimaryIndex): NamespacedPrimaryAll; export declare function indexBy(i: AnonymousPrimaryIndex): AnonymousPrimaryAll;