import React, { type JSX } from 'react'; import type { KnownIconType } from '@charcoal-ui/icons'; import './index.css'; type Variant = 'Default' | 'Overlay'; type Size = 'XS' | 'S' | 'M'; export type IconButtonProps = { readonly variant?: Variant; readonly size?: Size; readonly icon: keyof KnownIconType; readonly isActive?: boolean; component?: T; } & Omit, 'children' | 'as'>; declare const IconButton: (p: IconButtonProps) => JSX.Element; export default IconButton; //# sourceMappingURL=index.d.ts.map