///
import type { Writable } from 'svelte/store';
import type { WrappedWritable } from '../../types';
import type { CSSColorString } from '../../types';
export declare function generateOutput, R extends number | string | object | boolean | CSSColorString>(inputs: Writable>, processor: (inputs: T) => R): {
subscribe: (this: void, run: import("svelte/store").Subscriber, invalidate?: import("svelte/store").Invalidator | undefined) => import("svelte/store").Unsubscriber;
unsubscribe: () => void;
set: null;
update: null;
};