import React from 'react'; import { IconProp } from '@fortawesome/fontawesome-svg-core'; import { Props as ButtonProps } from '../../atoms/Button'; declare type Props = ButtonProps & { icon: IconProp; }; export declare const IconButton: React.FC; export {};