import React from 'react'; import { type TagProps } from '../ui/tag'; export interface SelectButtonProps { title: string; description?: string; selected?: boolean; disabled?: boolean; icon?: React.ReactNode; image?: { src: string; alt: string; }; tag?: string; tagVariant?: TagProps['variant']; onClick?: () => void; className?: string; } export declare const SelectButton: React.ForwardRefExoticComponent>; //# sourceMappingURL=select-button.d.ts.map