1 | import type { Assign } from "@ark-ui/react";
|
2 | import { PinInput as ArkPinInput } from "@ark-ui/react/pin-input";
|
3 | import { type HTMLChakraProps, type SlotRecipeProps, type UnstyledProp } from "../../styled-system";
|
4 | declare const usePinInputStyles: () => Record<string, import("../..").SystemStyleObject>;
|
5 | export { usePinInputStyles };
|
6 | export interface PinInputRootProviderBaseProps extends Assign<ArkPinInput.RootProviderBaseProps, SlotRecipeProps<"pinInput">>, UnstyledProp {
|
7 | }
|
8 | export interface PinInputRootProviderProps extends HTMLChakraProps<"div", PinInputRootProviderBaseProps> {
|
9 | }
|
10 | export declare const PinInputRootProvider: import("react").ForwardRefExoticComponent<PinInputRootProviderProps & import("react").RefAttributes<HTMLDivElement>>;
|
11 | export interface PinInputRootBaseProps extends Assign<ArkPinInput.RootBaseProps, SlotRecipeProps<"pinInput">>, UnstyledProp {
|
12 | }
|
13 | export interface PinInputRootProps extends HTMLChakraProps<"div", PinInputRootBaseProps> {
|
14 | }
|
15 | export declare const PinInputRoot: import("react").ForwardRefExoticComponent<PinInputRootProps & import("react").RefAttributes<HTMLDivElement>>;
|
16 | export declare const PinInputPropsProvider: React.Provider<PinInputRootBaseProps>;
|
17 | export interface PinInputControlProps extends HTMLChakraProps<"div", ArkPinInput.ControlBaseProps> {
|
18 | }
|
19 | export declare const PinInputControl: import("react").ForwardRefExoticComponent<PinInputControlProps & import("react").RefAttributes<HTMLDivElement>>;
|
20 | export interface PinInputInputProps extends HTMLChakraProps<"input", ArkPinInput.InputBaseProps> {
|
21 | }
|
22 | export declare const PinInputInput: import("react").ForwardRefExoticComponent<PinInputInputProps & import("react").RefAttributes<HTMLInputElement>>;
|
23 | export interface PinInputLabelProps extends HTMLChakraProps<"label"> {
|
24 | }
|
25 | export declare const PinInputLabel: import("react").ForwardRefExoticComponent<PinInputLabelProps & import("react").RefAttributes<HTMLLabelElement>>;
|
26 | export declare const PinInputContext: (props: ArkPinInput.ContextProps) => import("react").ReactNode;
|
27 | export declare const PinInputHiddenInput: import("react").ForwardRefExoticComponent<ArkPinInput.HiddenInputProps & import("react").RefAttributes<HTMLInputElement>>;
|
28 | export interface PinInputValueChangeDetails extends ArkPinInput.ValueChangeDetails {
|
29 | }
|