declare const ListOfDescriptionLists: import("svelte").Component<{
    class?: string;
    labelledBy: string;
    listOfDescriptionLists?: Record<string, unknown>[];
    descriptionKeysToUseInTitle?: {
        descriptionKey: string;
        prefix?: string;
    }[];
    titleSeparator?: string;
    noValueAriaLabel?: string;
    headerTag?: "h2" | "h3" | "h4" | "h5" | "h6";
}, {}, "">;
type ListOfDescriptionLists = ReturnType<typeof ListOfDescriptionLists>;
export default ListOfDescriptionLists;
