import type { TestInstance } from 'test-renderer';
import type { UserEventInstance } from '../setup';
export declare const DEFAULT_MIN_PRESS_DURATION = 130;
export declare const DEFAULT_LONG_PRESS_DELAY_MS = 500;
export interface PressOptions {
    duration?: number;
}
export declare function press(this: UserEventInstance, instance: TestInstance): Promise<void>;
export declare function longPress(this: UserEventInstance, instance: TestInstance, options?: PressOptions): Promise<void>;
