import type { ComponentPropsWithoutRef, ReactNode } from "react"; import { type As, type MergeWithAs, type PaginationProps } from "@heroui/react"; import type { Field } from "soda-tanstack-form"; export type FormPaginationProps = MergeWithAs, ComponentPropsWithoutRef, PaginationProps, AsComponent> & { field: Field; component?: (props: MergeWithAs, ComponentPropsWithoutRef, PaginationProps, AsComponent>) => ReactNode; }; export declare function FormPagination({ field, component: Pagination2, ...rest }: FormPaginationProps): ReactNode;