import { HTMLAttributes } from 'react';
import { CircularProgressProps } from '../CircularProgress/types';
export interface BackdropProps extends Pick, 'className' | 'style'> {
show?: boolean;
/**
* Show label in the middle under preloader
*/
label?: string;
progressProps?: CircularProgressProps;
}