import type { FC } from 'react'; import { type ButtonProps } from '../Button'; import { type SelectValueTextProps } from './SelectValueText'; type SelectButtonBaseProps = Omit; export interface SelectButtonVariantProps { variant?: Exclude; color?: Exclude; size?: ButtonProps['size']; } type SelectButtonProps = SelectButtonBaseProps & SelectButtonVariantProps & SelectValueTextProps; export declare const SelectButton: FC; export {};