import type { ComponentProps } from "react"; import { CollapsibleContent, CollapsibleTrigger } from "../ui/collapsible"; export type SourcesProps = ComponentProps<"div">; export declare const Sources: ({ className, ...props }: SourcesProps) => import("react/jsx-runtime").JSX.Element; export type SourcesTriggerProps = ComponentProps & { count: number; }; export declare const SourcesTrigger: ({ className, count, children, ...props }: SourcesTriggerProps) => import("react/jsx-runtime").JSX.Element; export type SourcesContentProps = ComponentProps; export declare const SourcesContent: ({ className, ...props }: SourcesContentProps) => import("react/jsx-runtime").JSX.Element; export type SourceProps = ComponentProps<"a"> & { href: string; }; export declare const Source: ({ href, title, children, rel, target, ...props }: SourceProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=sources.d.ts.map