import { Iany } from '@cpmech/js2ts';
export interface IScanInput {
    table: string;
    index?: string;
    skName: string;
    skValue: string;
    skValue2?: string;
    op?: '<=' | '<' | '=' | '>' | '>=' | 'prefix' | 'between';
}
export declare const scan: ({ table, index, skName, skValue, skValue2, op, }: IScanInput) => Promise<Iany[]>;
