import { ValidationIconProps } from "./validation-icon.component";
type ValidationType = "error" | "warning" | "info";
declare const ValidationIconStyle: import("styled-components").StyledComponent<"span", any, {
    theme: object;
} & ValidationIconProps & {
    validationType: ValidationType;
}, "theme">;
export default ValidationIconStyle;
