import type { FunctionalComponent } from 'vue'; import type { ButtonProps } from '../button'; import Button from '../button'; const PickerButton: FunctionalComponent = (props: ButtonProps, { attrs, slots }) => { return ; }; export default PickerButton;