import type { ListboxEmptyBaseProps } from '@ark-ui/svelte/listbox';
import type { Snippet } from 'svelte';
import type { ClassValue } from 'svelte/elements';
type Props = ListboxEmptyBaseProps & {
    class?: ClassValue;
    children?: Snippet;
};
declare const ListboxEmpty: import("svelte").Component<Props, {}, "">;
type ListboxEmpty = ReturnType<typeof ListboxEmpty>;
export default ListboxEmpty;
