import { type Client } from "@prismicio/client";
/** Configuration for `enableAutoPreviews`. */
export type EnableAutoPreviewsConfig = {
    /** Prismic client with which automatic previews will be enabled. */
    client: Pick<Client, "queryContentFromRef" | "enableAutoPreviewsFromReq">;
};
/**
 * Configures a Prismic client to automatically query draft content during a
 * preview session.
 *
 * @param config - Configuration for the function.
 */
export declare function enableAutoPreviews(config: EnableAutoPreviewsConfig): void;
