import { Ref } from 'react';
interface OTPFieldInputOwnProps {
/** Input placeholder. */
placeholder?: string;
/** Extra classes for the cell wrapper. */
className?: string;
/** Extra classes for the underlying `` element. */
inputClassName?: string;
/** Forwarded to the cell wrapper element. */
ref?: Ref;
/** Internal: cell index injected by parent `OTPField` via `cloneElement`. */
index?: number;
}
export type OTPFieldInputProps = OTPFieldInputOwnProps;
/** Shape of `OTPFieldInput` defaults that can be supplied via `CladdProvider`'s `defaults` prop. */
export type OTPFieldInputDefaultProps = Partial>;
export declare const OTPFieldInput: (props: OTPFieldInputProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=OTPFieldInput.d.ts.map