import { DataType } from "../datatypes"; export declare const jsTypeToPolarsType: (value: unknown) => DataType; /** * Construct an internal `JsSeries` from an array */ export declare function arrayToJsSeries(name?: string, values?: any[], dtype?: DataType): any; export declare function arrayToJsDataFrame(data: any[], options?: any): any;