type StackListItem = {
    icon: React.ReactNode;
    title: string;
    subtitle: string;
    date: string;
};
type StackListProps = {
    items: StackListItem[];
    initialVisible?: number;
    className?: string;
};
export default function StackList({ items, initialVisible, className, }: StackListProps): import("react/jsx-runtime").JSX.Element;
export {};
