import { InputHTMLAttributes, PropsWithChildren, ReactNode } from 'react';
import { PropsWithStyle } from '../../index.ts';
import { SfChipSize } from '@storefront-ui/shared';
export { SfChipSize };
export interface SfChipProps extends PropsWithChildren, PropsWithStyle {
size?: `${SfChipSize}`;
square?: boolean;
inputProps?: InputHTMLAttributes;
slotPrefix?: ReactNode;
slotSuffix?: ReactNode;
}