import { SelectProps } from 'antd'; export interface SelectPageProps extends SelectProps { extendPages?: any; pageContainerType?: string | string[]; hasSelectedPage?: boolean; value: any; valuePropName?: string; onChange: (page: any) => void; selectedPage?: any; optionLabelProp?: string; }