import type { HTMLAttributes, ComponentType } from 'react';
import React from 'react';
export interface Props extends Omit, 'children'> {
className?: string;
icon?: false | ComponentType<{
className?: string;
}>;
description?: false | string;
estimatedDuration?: number;
/**
* 0 ≤ progress ≤ 100
*/
progress?: 'auto' | number;
}
export declare const LoadingPlaceholder: React.ForwardRefExoticComponent>;