import React from 'react'; import { Props } from 'react-select'; export interface SelectPaginationProps extends Props { /** Overwrite className */ className?: string; /** Disabled state */ disabled?: boolean; /** Error option */ error?: string | boolean; /** Text to be displayed representing the option */ label?: string; /** [react-select] Default additional for first request for every search. */ additional?: any; /** [react-select] Debounce timeout for loadOptions calls. 0 by default. */ debounceTimeout?: any; /** [react-select] Function. Async function that take next arguments. */ loadOptions: any; /** [react-select] Placeholder for the select value */ placeholder?: string; /** [react-select] The value of the select; reflected by the selected option */ value?: any; /** [react-select] Function. */ onChange?: any; } declare const SelectPagination: React.FC; export default SelectPagination;