import { Entity } from '@techmely/types';

declare function listify<O extends Record<string, any>, T = any>(obj: O, mapFn: (key: string, value: Entity) => any): T[];

export { listify };
