import { Direction, Alignment, Spacing, ListMode } from './types'; interface StyledListContainerProps { $direction: Direction; $alignment: Alignment; $spacing: Spacing; $maxHeight?: number | string; $maxWidth?: number | string; $mode: ListMode; $responsive: boolean; $wrapItems: boolean; } export declare const StyledListContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, StyledListContainerProps>> & string; export declare const StyledItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, { $hoverable?: boolean; $clickable?: boolean; $selectable?: boolean; $selected?: boolean; $mode: ListMode; }>> & string; export {};