@schematichq/schematic-components 1.1.0 → 1.1.1

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.
@@ -7071,7 +7071,10 @@ export declare function useRequest<TData>(fn: () => Promise<{
7071
7071
  data: TData;
7072
7072
  }> | undefined): [RequestState<TData>, () => Promise<void>];
7073
7073
 
7074
- export declare function useTrialEnd(): number | undefined;
7074
+ export declare function useTrialEnd(): {
7075
+ endDate: Date | undefined;
7076
+ formatted: string | undefined;
7077
+ };
7075
7078
 
7076
7079
  export declare function useWrapChildren(elements: HTMLElement[]): boolean;
7077
7080