diff --git a/src/components/progress/index.d.ts b/src/components/progress/index.d.ts
index a80244de69ca..53037e1b3f73 100644
--- a/src/components/progress/index.d.ts
+++ b/src/components/progress/index.d.ts
@@ -1,6 +1,6 @@
///
-import { SFC, HTMLAttributes } from 'react';
+import { SFC, ProgressHTMLAttributes } from 'react';
declare module '@elastic/eui' {
/**
@@ -18,7 +18,7 @@ declare module '@elastic/eui' {
export type EuiProgressPosition = 'fixed' | 'absolute' | 'static';
export type EuiProgressProps = CommonProps &
- HTMLAttributes & {
+ ProgressHTMLAttributes & {
size?: EuiProgressSize;
color?: EuiProgressColor;
position?: EuiProgressPosition;