import { ReactNode, PropsWithChildren } from 'react'; import { PropsWithStyle } from '../../index.ts'; import { SfButtonSize, SfButtonVariant } from '@storefront-ui/shared'; export { SfButtonSize, SfButtonVariant }; export interface SfButtonProps extends React.ButtonHTMLAttributes, PropsWithStyle, PropsWithChildren { slotPrefix?: ReactNode; slotSuffix?: ReactNode; size?: `${SfButtonSize}`; variant?: `${SfButtonVariant}`; blank?: boolean; square?: boolean; }