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