import React from "react"; import { InlineFlexProps } from "../InlineFlex"; import { InputProps } from "../Input"; export type AuthCodeProps = Omit & { length?: number; overrides?: { Container?: Partial>; /** * Overrides that apply to each of the individual the Input components. */ Inputs?: Partial; }; onComplete: (authCode: string) => unknown; value?: string; onChange?: (authCode: string) => unknown; } & Pick; export declare const EMPTY_VALUE = ""; export declare const AuthCode: React.ForwardRefExoticComponent & { length?: number; overrides?: { Container?: Partial>; /** * Overrides that apply to each of the individual the Input components. */ Inputs?: Partial; }; onComplete: (authCode: string) => unknown; value?: string; onChange?: (authCode: string) => unknown; } & Pick & React.RefAttributes>; //# sourceMappingURL=AuthCode.d.ts.map