import { default as React } from 'react'; type WarningBoxVariant = 'warning' | 'error' | 'success' | 'info'; interface WarningBoxProps { title: string; description: string; filenames?: string[]; variant?: WarningBoxVariant; borderColor?: string; backgroundColor?: string; textColor?: string; icon?: React.ReactNode; } declare const WarningBox: React.FC; export default WarningBox; export type { WarningBoxProps, WarningBoxVariant }; //# sourceMappingURL=WarningBox.d.ts.map