import type { InputForwardedProps } from '../input'; type Props = Omit & { /** Prefix shown in the leading addon segment. @default 'https://' */ prefix?: string; }; /** * A URL input with a fixed protocol prefix shown in a tonally distinct gray segment. The bound `value` * is always the full URL (with `prefix`) or `''`; users type only the host/path. * * Built as a thin wrapper around kit `Input` — the prefix segment is rendered through Input's `prefix` * snippet slot. The slot is full-height, flush against the field's left rounded edge (Input suppresses * its own left padding when `prefix` is set), and naturally sits behind the underline overlay. * * ### CSS Custom Properties * | Property | Description | Default | * |---|---|---| * | `--sc-kit--website-input--prefix--background` | Prefix segment background | `--sc-kit--color--bg--field-alt` | * | `--sc-kit--website-input--prefix--color` | Prefix text color | `--sc-kit--color--text--muted` | * | `--sc-kit--website-input--prefix--border-color` | Vertical separator color | `--sc-kit--color--border--field` | * * Plus every public CSS variable exposed by ``. */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;