import { ICutShortElement, ICutShortOptions } from './CutShort'; interface ICutShortFactory { elements: Set; } declare class CutShortFactory implements ICutShortFactory { elements: Set; constructor(selector: string, options?: ICutShortOptions); private _create; private _createAll; private _watch; } export { CutShortFactory, ICutShortFactory };