///
import type { SvelteComponentTyped } from "svelte";
export interface SelectItemGroupProps
extends svelte.JSX.HTMLAttributes {
/**
* Set to `true` to disable the optgroup element
* @default false
*/
disabled?: boolean;
/**
* Specify the label attribute of the optgroup element
* @default "Provide label"
*/
label?: string;
[key: `data-${string}`]: any;
}
export default class SelectItemGroup extends SvelteComponentTyped<
SelectItemGroupProps,
{},
{ default: {} }
> {}