/**
 * Options for `toBeInViewport` assert.
 */
export type ToBeInViewportOptions = Readonly<{
    ratio?: number;
    timeout?: number;
}>;
