import type { Assign, HtmlIngredientProps, Optional } from '../types.js';
import type { CreatePinInputProps, CreatePinInputReturn } from './create-pin-input.svelte.js';
export interface PinInputProps extends Assign<HtmlIngredientProps<'div', HTMLDivElement, CreatePinInputReturn>, Optional<CreatePinInputProps, 'id'>> {
}
declare const PinInputRoot: import("svelte").Component<PinInputProps, {}, "ref">;
type PinInputRoot = ReturnType<typeof PinInputRoot>;
export default PinInputRoot;
