import type { HTMLSelectAttributes } from 'svelte/elements';
interface SelectProps extends HTMLSelectAttributes {
    label?: string;
    noAsterisk?: boolean;
    supportingText?: string;
    issues?: {
        message: string;
    }[] | undefined;
    variant?: 'outlined' | 'filled';
    element?: HTMLSpanElement;
}
declare const NativeSelect: import("svelte").Component<SelectProps, {}, "value">;
type NativeSelect = ReturnType<typeof NativeSelect>;
export default NativeSelect;
