//#region src/Pagination/model.d.ts
type PageDataProps = {
  props: {
    href?: string;
    rel?: string;
    'aria-label'?: string;
    'aria-current'?: 'page' | 'step' | 'location' | 'date' | 'time' | 'true' | 'false' | boolean;
    'aria-hidden'?: boolean;
    'aria-disabled'?: boolean;
    onClick?: (e: React.MouseEvent) => void;
    as?: string;
    role?: string;
  };
  key: string;
  content: string;
};
//#endregion
export { PageDataProps };