import { FC } from'react';
exportinterfaceFilePlaceholderProps {
/**
* Classname of the placeholder wrapper.
*/className?: string;
/**
* The file extension to display on the placeholder.
*/extension?: string;
}
exportdeclareconstFilePlaceholder: FC<FilePlaceholderProps>;