import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
/** Renders an HTML `<option>` element. Accepts optional attributes and child content. */
declare const Option: import("svelte").Component<Props, {}, "">;
type Option = ReturnType<typeof Option>;
export default Option;
