import type { PropsWithChildren } from 'react'; import React from 'react'; interface DetailsProps { hasThumbnail: boolean; layout: 'vertical' | 'horizontal'; title?: string; description?: string; href: string; } export declare function Details({ title, description, href, children, layout, hasThumbnail, }: PropsWithChildren): React.JSX.Element; export {};