import { PrototypeStruct } from '..';
export interface SetOf {
    of<T>(...elemnts: T[]): Set<T>;
}
export declare type OfFn<T> = (...elements: T[]) => Set<T>;
export declare const of: PrototypeStruct;
declare global {
    interface SetConstructor extends SetOf {
    }
}
//# sourceMappingURL=of.d.ts.map