import { Collection } from './internal/types.js';

declare function shuffle<T>(collection: Collection<T> | null | undefined): T[];

export { shuffle as default, shuffle };
