/** * @file pagination/rc-pagination/Options * @author chenyaqiu */ import React from 'react'; import { SelectProps } from '../../select/src'; import { OptionProps } from '../../select/src/Option'; export interface OptionsProps { pageSizeOptions?: (string | number)[]; changeSize?: (pageSize: number) => void; rootPrefixCls?: string; pageSize?: string; selectComponentClass?: null | React.FC; buildOptionText?: (option: string | number) => string; selectPrefixCls?: string; disabled?: boolean; locale?: { items_per_page?: string; }; current?: number; Option?: React.FC; } declare const Options: React.FC; export default Options;