import { AttributeValue } from "@aws-sdk/client-dynamodb";
import { NativeAttributeValue } from "./models";
export interface unmarshallOptions {
  wrapNumbers?: boolean;
  convertWithoutMapWrapper?: boolean;
}
export declare const unmarshall: (
  data: Record<string, AttributeValue> | AttributeValue,
  options?: unmarshallOptions
) => Record<string, NativeAttributeValue>;
