@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
11 lines (10 loc) • 333 B
TypeScript
export type Pagination = {
currentPage: number;
numPages: number;
onSelectPage: (page: number) => void;
};
type Props = Pagination & {
isDisabled?: boolean;
};
export declare const VuiTablePagination: ({ currentPage, numPages, onSelectPage, isDisabled }: Props) => import("react/jsx-runtime").JSX.Element;
export {};