import { PrimitiveType } from '../types/index.js'; import { BaseTypeOptions, OptionsInput, TypeInterface } from '../types/type-definitions.js'; type SetTypeOptions = BaseTypeOptions; export type SetType = TypeInterface<'set', Options> & { items: Items; }; export declare function SetType(items: Items): SetType; export declare function SetType>(items: Items, options?: Options): SetType; export {};