stp-ui-kit 0.0.29 → 0.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,4 +10,4 @@ interface InputProps extends NativeInputProps {
10
10
  rows?: number;
11
11
  }
12
12
  export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
13
- export {};
13
+ export type { InputProps };
@@ -0,0 +1,6 @@
1
+ import { default as React } from 'react';
2
+ export declare const MaskedInput: React.ForwardRefExoticComponent<Omit<import('../Input').InputProps & React.RefAttributes<HTMLInputElement | HTMLTextAreaElement>, "ref"> & {
3
+ mask: string;
4
+ alwaysShowMask?: boolean;
5
+ maskPlaceholder?: string | null;
6
+ } & React.RefAttributes<HTMLInputElement>>;