import { JSX } from 'solid-js';
export interface SourceProps {
    href: string;
    children: JSX.Element;
}
declare function Source(props: SourceProps): JSX.Element;
export interface SourceTriggerProps {
    label?: string | number;
    showFavicon?: boolean;
    class?: string;
}
declare function SourceTrigger(props: SourceTriggerProps): JSX.Element;
export interface SourceContentProps {
    title: string;
    description: string;
    class?: string;
}
declare function SourceContent(props: SourceContentProps): JSX.Element;
declare function SourceList(props: {
    children: JSX.Element;
    class?: string;
}): JSX.Element;
export { Source, SourceTrigger, SourceContent, SourceList };
