export type PlistValue = string | number | bigint | boolean | Uint8Array | Date | PlistValue[] | { [key: string]: PlistValue; }; export declare function encodeXml(v: PlistValue): Uint8Array; export declare function decodeXml(buf: Uint8Array | string): PlistValue; export declare function decodeBinary(buf: Uint8Array): PlistValue; export declare function decode(buf: Uint8Array): PlistValue;