import React, { HTMLAttributes } from 'react';
export type SourceListProps = {
    isMarryBaby?: boolean;
    categorySlug?: string;
    listUrl?: string[];
    editMode?: boolean;
    collapseSource?: boolean;
    hideSourceList?: boolean;
    onListChange?: (v?: string[]) => void;
} & HTMLAttributes<HTMLDivElement>;
declare const SourceList: ({ listUrl: listUrlInit, hideSourceList, categorySlug, editMode, collapseSource, onListChange, isMarryBaby, ...rest }: SourceListProps) => React.JSX.Element;
export { SourceList };
