/** * Create a worker from a function * @param fn - Function to be turned into a worker * @return Worker function */ export declare const createWorker: (fn: () => void) => Worker; /** * An adventure into the void! * @return The explorers find nothing but void. */ export declare const toVoid: () => void; /** * Synonym for `toVoid()` because it's a convention */ export declare const noop: () => void;