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 & Partial>> & string & Omit<({ className, style }: ShelfIconProps) => import("react/jsx-runtime").JSX.Element, keyof import("react").Component>;