declare module "bplist-creator" { type PlistJsObj = any[] | Record; type BPlistCreator = (object: PlistJsObj) => Buffer; const BPlistCreator: BPlistCreator; export = BPlistCreator; }