/** * Removes all the options from an HTMLSelectElement. * @param selectElement * @param preserveEmpty If set to true, any option without a value (like a placeholder option) will be preserved. */ export declare const removeSelectOptions: ({ options }: HTMLSelectElement, preserveEmpty?: boolean) => void;