import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
declare const Ul: import("svelte").Component<Props, {}, "">;
type Ul = ReturnType<typeof Ul>;
export default Ul;
