import { Toolbar, type WithoutChildrenOrChild } from 'bits-ui';
type Item = {
    label: string;
    value: string;
} | string;
type $$ComponentProps = WithoutChildrenOrChild<Toolbar.RootProps> & {
    selected?: string;
    items: Item[];
};
declare const Select: import("svelte").Component<$$ComponentProps, {}, "ref" | "items" | "selected">;
type Select = ReturnType<typeof Select>;
export default Select;
