import * as React from "react"; type Props = { /** * These query params will not be included as hidden inputs. * - add params handled by this form to this list * - any params from other forms you want to clear on submit */ exclude?: Array; } & Omit, "name" | "value" | "type" | "id">; /** * Include existing query params as hidden inputs in a form. * * @example * A pagination bar that does not clear the search query * ```tsx *
* * * * * * ``` * * @example * A search form that clears the page param * ```tsx *
* * * * ``` */ export declare function ExistingSearchParams({ exclude, ...props }: Props): import("react/jsx-runtime").JSX.Element; export {};