/// <reference types="styled-components" />
import * as React from 'react';
import { ITheme } from '../../themes/theme';
interface IProps {
    altText: string;
    white?: boolean;
    theme: ITheme;
}
declare const _default: React.ForwardRefExoticComponent<Pick<IProps, "white" | "altText"> & {
    theme?: any;
}>;
export default _default;
