import { List } from './internal/types.mjs';

declare function uniq<T>(array: List<T> | null | undefined): T[];

export { uniq as default, uniq };
