import type { ListCollection } from '@ark-ui/svelte/collection';
import type { ListItem } from '../../utils/collections';
export declare const getListboxContext: () => {
    readonly collection: ListCollection<ListItem>;
    filter: (text: string) => void;
}, setListboxContext: (context: {
    readonly collection: ListCollection<ListItem>;
    filter: (text: string) => void;
}) => {
    readonly collection: ListCollection<ListItem>;
    filter: (text: string) => void;
};
