import type { AttributeValue } from "@aws-sdk/client-dynamodb"; import type { NativeAttributeValue } from "./models"; import type { unmarshallOptions } from "./unmarshall"; /** * Convert a DynamoDB AttributeValue object to its equivalent JavaScript type. * * @param data - The DynamoDB record to convert to JavaScript type. * @param options - An optional configuration object for `convertToNative`. */ export declare const convertToNative: (data: AttributeValue, options?: unmarshallOptions) => NativeAttributeValue;