import type { IconTheme } from '../core/types';
interface Props {
    primary?: IconTheme['primary'];
    secondary?: IconTheme['secondary'];
}
declare const ErrorIcon: import("svelte").Component<Props, {}, "">;
type ErrorIcon = ReturnType<typeof ErrorIcon>;
export default ErrorIcon;
