import type { CSSProperties } from 'react';
export interface ShelfIconProps {
    className?: string;
    float?: 'left' | 'right';
    size?: string;
    color?: string;
    direction: 'left' | 'right' | 'up' | 'down';
    style?: CSSProperties;
}
export declare const ShelfIcon: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit<ShelfIconProps, never> & Partial<Pick<ShelfIconProps, never>>> & string & Omit<({ className, style }: ShelfIconProps) => import("react/jsx-runtime").JSX.Element, keyof import("react").Component<any, {}, any>>;
