declare type Collection = Object | Array; /** * Returns a random item from a collection * * @param {Array|Object} collection * @returns {any} */ export declare const sample: (collection: Collection) => any; export {};