import React from 'react'; import type { PathIconProps, PathIconRef } from './components'; declare const EnergyStar: React.ForwardRefExoticComponent; declare type EnergyStarRef = PathIconRef; interface EnergyStarProps extends PathIconProps { } export { EnergyStar }; export type { EnergyStarRef, EnergyStarProps }; export default EnergyStar;