import React from 'react';
export interface ShelfIconProps {
    className?: string;
    float?: 'left' | 'right';
    size?: string;
    color?: string;
    direction: 'left' | 'right' | 'up' | 'down';
    style?: React.CSSProperties;
}
export declare const ShelfIcon: import("styled-components").StyledComponent<({ className, style }: ShelfIconProps) => React.JSX.Element, any, {}, never>;
