import { TransformComponent as TC } from '../runtime';
import { JitterYTransform } from '../spec';
export type JitterYOptions = Omit<JitterYTransform, 'type'>;
/**
 * The JitterY transform produce dy channels for marks (especially for point)
 * with ordinal x and y dimension, say to make them jitter in their own space.
 */
export declare const JitterY: TC<JitterYOptions>;
