type Listener = () => void; export declare const createSubscribable: (onSubscribe?: () => void, onUnsubscribe?: () => void) => readonly [Set, (listener: TListener) => () => void, () => boolean]; export {};