import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface PaginationLastTriggerBaseProps extends PolymorphicProps { } export interface PaginationLastTriggerProps extends HTMLProps<'button'>, PaginationLastTriggerBaseProps { } export declare const PaginationLastTrigger: ForwardRefExoticComponent>;