import { Ord } from '@fp4ts/cats-kernel'; import { List } from '../list'; import { Set } from './algebra'; export declare const pure: (a: A) => Set; export declare const empty: Set; export declare const fromArray: (O: Ord, xs: A[]) => Set; export declare const fromIterator: (O: Ord, it: Iterator) => Set; export declare const fromList: (O: Ord, xs: List) => Set; export declare const fromSortedArray: (xs0: A[]) => Set; //# sourceMappingURL=constructors.d.ts.map