import type { Generic } from 'adopted-style-sheets'; import type { PropAlternativeButtonLinkRole, PropButtonVariant, PropCustomClass, PropInline } from '../props'; import type { OptionalProps as LinkOptionalProps, RequiredProps as LinkRequiredProps } from './link'; type RequiredProps = LinkRequiredProps; type OptionalProps = Omit & PropButtonVariant & PropCustomClass & PropInline; export type LinkButtonProps = Generic.Element.Members; export {};