etudes 11.0.0 → 11.1.0

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.
@@ -25,4 +25,7 @@ type AnchorVariantProps = Omit<AnchorHTMLAttributes<HTMLAnchorElement>, 'aria-di
25
25
  };
26
26
  export type ButtonProps = AnchorVariantProps | LinkVariantProps | NavLinkVariantProps | ButtonVariantProps;
27
27
  export declare function Button(props: Readonly<ButtonProps>): import("react/jsx-runtime").JSX.Element;
28
+ export declare namespace Button {
29
+ var displayName: string;
30
+ }
28
31
  export {};
@@ -33,4 +33,7 @@ export type WithTooltipProps = Pick<HTMLAttributes<HTMLElement>, 'className' | '
33
33
  threshold?: number;
34
34
  };
35
35
  export declare function WithTooltip({ children, className, style, alignment: externalAlignment, arrowHeight, arrowWidth, gap, hint, maxWidth, threshold, }: Readonly<WithTooltipProps>): import("react/jsx-runtime").JSX.Element;
36
+ export declare namespace WithTooltip {
37
+ var displayName: string;
38
+ }
36
39
  export {};