import type { PaginationProps } from './Pagination'; import type { PaginationArrowProps } from './PaginationArrow'; export type OldPaginationProps = Omit & { /** @deprecated page를 대신 사용해주세요. */ currentPage: number; /** @deprecated hasArrows를 대신 사용해주세요. */ showArrowButton?: PaginationProps['hasArrows']; /** @deprecated onChange를 대신 사용해주세요. */ onChangePage?: PaginationProps['onChange']; }; export declare function convertOldPaginationProps(props: OldPaginationProps): PaginationProps; export interface OldPaginationArrowProps extends Omit { /** @deprecated direction을 대신 사용해주세요. */ position?: PaginationArrowProps['direction']; } export declare function convertOldPaginationArrowProps(props: OldPaginationArrowProps): PaginationArrowProps;