@codecademy/gamut

68.6.268.6.3-alpha.92d8ae.0
dist/DatePicker/DatePickerInput/DatePickerInputShell/index.d.ts
+dist/DatePicker/DatePickerInput/DatePickerInputShell/index.d.tsNew file
+11
Index: package/dist/DatePicker/DatePickerInput/DatePickerInputShell/index.d.ts
===================================================================
--- package/dist/DatePicker/DatePickerInput/DatePickerInputShell/index.d.ts
+++ package/dist/DatePicker/DatePickerInput/DatePickerInputShell/index.d.ts
@@ -0,0 +1,11 @@
+import type { InputWrapperProps } from '../../../Form/inputs/Input';
+export type DatePickerInputShellProps = Omit<InputWrapperProps, 'className' | 'type' | 'icon' | 'value' | 'onChange' | 'color' | 'label'> & {
+    labelledById: string;
+    rangePart?: 'start' | 'end';
+    shellId: string;
+};
+export declare const DatePickerInputShell: import("react").ForwardRefExoticComponent<Omit<InputWrapperProps, "color" | "label" | "className" | "onChange" | "type" | "icon" | "value"> & {
+    labelledById: string;
+    rangePart?: "start" | "end";
+    shellId: string;
+} & import("react").RefAttributes<HTMLDivElement>>;