interface Props {
    attributes?: Record<string, any>;
}
/** Renders a self-closing HTML `<input>` element. Accepts optional attributes. */
declare const Input: import("svelte").Component<Props, {}, "">;
type Input = ReturnType<typeof Input>;
export default Input;
