import * as pinInput from '@zag-js/pin-input';
import type { Accessor } from '../types.js';
export interface CreatePinInputProps extends Omit<pinInput.Props, 'dir' | 'getRootNode'> {
}
export interface CreatePinInputReturn extends pinInput.Api {
}
export declare function createPinInputContext(props: Accessor<CreatePinInputProps>): Accessor<CreatePinInputReturn>;
