import type { BaseSyntheticEvent } from 'react';
/** Builds base syntentic event stub, with prop values as inspected in RN runtime. */
type BaseEvent = Partial<BaseSyntheticEvent<object, unknown, unknown>> & {
    isPersistent: () => boolean;
};
export declare function baseSyntheticEvent(): BaseEvent;
export {};
