import type { HtmlIngredientProps } from '../types.js';
export interface SelectListProps extends HtmlIngredientProps<'div', HTMLDivElement> {
}
declare const SelectList: import("svelte").Component<SelectListProps, {}, "ref">;
type SelectList = ReturnType<typeof SelectList>;
export default SelectList;
