import { BuilderType } from './builder'; /** Map a variable to an AWS type */ export declare const getType: (variable: any) => "BOOL" | "S" | "N" | "B"; /** Format a value that is valid for query builder type */ export declare const formatValue: (builderType: BuilderType, value: any) => any; /** Simple way to check if the object is empty */ export declare const isEmpty: (object: object) => boolean; /** Create a chainable function from a void function */ export declare const chainable: (fn: (...args: T) => void, weeSomething: U) => (...args: T) => U; export declare function getAllPages(func: (lastEvaluatedKey?: object) => Promise): Promise;