import { Select } from '@chakra-ui/react'; import type { SelectProps } from '@chakra-ui/react'; export const PageSelect = (props: SelectProps): JSX.Element => { const { value, ...rest } = props; return ( ); };