import { ComponentWithHref, PropsWithExtend, PropsWithHref, } from '../../types/shared'; export type ClickUniqueProps = PropsWithExtend<{ disabled?: boolean; }>; export type ClickProps = PropsWithHref; /** * An unstyled component that can be used for creating your own clickable components. * * @deprecated */ export const Click: ComponentWithHref; export {};