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