interface SvgContainerProps {
    height?: string;
    width?: string;
    color?: string;
    onClick?: () => void;
    verticalAlign?: string;
    className?: string;
}
declare const SvgContainer: import("styled-components").StyledComponent<"span", any, SvgContainerProps, never>;
export default SvgContainer;
