import { type IconButtonProps as PrimerIconButtonProps, type SlotMarker } from '@primer/react'; import { type ForwardRefComponent } from '../polymorphic'; import { type SxProp } from '../sx'; type IconButtonProps = PrimerIconButtonProps & SxProp & { as?: React.ElementType; }; declare const IconButton: ForwardRefComponent<"a" | "button", IconButtonProps> & SlotMarker; export { IconButton }; export type { IconButtonProps }; //# sourceMappingURL=IconButton.d.ts.map