import { DefineComponent } from 'vue'; import { ButtonProps } from 'primevue/button'; import type { TSVueIcons } from '@/components/v2/Icon/Icon.vue.d'; export interface TSButtonProps extends /* @vue-ignore */ Omit { /** * Tooltip/information to show on button hover. */ tooltip?: string; /** * Set the position of tooltip. * @default bottom */ tooltipPos?: 'top' | 'right' | 'bottom' | 'left'; icon?: TSVueIcons; /** * Style class of the icon. */ iconClass?: string | string[]; } declare const TSButton: DefineComponent; export default TSButton;