import { JSX, VNode } from 'preact';
import { IBaseComponentProps, TIconProps } from '../../../types';
interface IProps extends IBaseComponentProps {
    icon: VNode<TIconProps>;
}
type TProps = Omit<JSX.HTMLAttributes<HTMLButtonElement>, 'icon'> & IProps;
export default TProps;
//# sourceMappingURL=TProps.d.ts.map