UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

10 lines (9 loc) 306 B
export type Pager = { onSelectPreviousPage?: () => void; onSelectNextPage?: () => void; }; type Props = Pager & { isDisabled?: boolean; }; export declare const VuiTablePager: ({ onSelectPreviousPage, onSelectNextPage, isDisabled }: Props) => import("react/jsx-runtime").JSX.Element; export {};