import type { VariantProps } from "class-variance-authority" import type { showMoreButtonVariants } from "./variants" export interface ShowMoreButtonProps extends React.PropsWithChildren>, VariantProps { disabled?: boolean showLess?: boolean textShowMore?: string textShowLess?: string loadMoreData: () => void }