interface _PaginationIconProps { path: string; stroke?: any; style?: React.CSSProperties; className?: string; children?: React.ReactNode; } export type PaginationIconProps = Omit<_PaginationIconProps, 'path'>; export type PaginationIcon = React.FC; export declare const PaginationNextIcon: (props: PaginationIconProps) => import("react/jsx-runtime").JSX.Element; export declare const PaginationPreviousIcon: (props: PaginationIconProps) => import("react/jsx-runtime").JSX.Element; export declare const PaginationFirstIcon: (props: PaginationIconProps) => import("react/jsx-runtime").JSX.Element; export declare const PaginationLastIcon: (props: PaginationIconProps) => import("react/jsx-runtime").JSX.Element; export declare const PaginationDotsIcon: (props: PaginationIconProps) => import("react/jsx-runtime").JSX.Element; export {};