type $$ComponentProps = {
    options: {
        label: string;
        value: string;
    }[];
    value: string;
};
declare const Select: import("svelte").Component<$$ComponentProps, {}, "value">;
type Select = ReturnType<typeof Select>;
export default Select;
