import type { HTMLInputAttributes, HTMLLabelAttributes } from 'svelte/elements';
interface Props extends HTMLInputAttributes {
    bordered?: boolean;
    label?: string;
    labelProps?: HTMLLabelAttributes;
}
declare const Input: import("svelte").Component<Props, {}, "value" | "checked">;
type Input = ReturnType<typeof Input>;
export default Input;
