AK-21/Graphite-Industrial-Intelligence
0
1import type { Field } from '@aws-sdk/client-rds-data';2import { TypeHint } from '@aws-sdk/client-rds-data';3import type { QueryTypingsValue } from "../../sql/sql.cjs";4export declare function getValueFromDataApi(field: Field): string | number | boolean | string[] | number[] | Uint8Array | boolean[] | import("@aws-sdk/client-rds-data").ArrayValue[] | null;5export declare function typingsToAwsTypeHint(typings?: QueryTypingsValue): TypeHint | undefined;6export declare function toValueParam(value: any, typings?: QueryTypingsValue): {7 value: Field;8 typeHint?: TypeHint;9};10 