import { Select, type WithoutChildren } from "bits-ui";
type Props = Select.RootProps & {
    placeholder?: string;
    contentProps?: WithoutChildren<Select.ContentProps>;
};
declare const SelectChildren: import("svelte").Component<Props, {}, "value">;
type SelectChildren = ReturnType<typeof SelectChildren>;
export default SelectChildren;
