export type PinError = { statusCode: 400; content: { code?: string; }; } | { statusCode: void | number; }; type Props = { label: string; error?: PinError; className?: string; value: string; onChange: (value: string) => void; onComplete: (value: string) => void; disabled?: boolean; }; export declare function PinInput({ label, error, className, value, onChange, onComplete, disabled }: Props): import("react/jsx-runtime").JSX.Element; export {};