import type { InputProps } from '@zag-js/pin-input';
import type { Assign, HtmlIngredientProps } from '../types.js';
export interface PinInputInputProps extends Assign<HtmlIngredientProps<'input', HTMLInputElement>, InputProps> {
}
declare const PinInputInput: import("svelte").Component<PinInputInputProps, {}, "ref">;
type PinInputInput = ReturnType<typeof PinInputInput>;
export default PinInputInput;
