@navservice/usuario 1.35.0 → 1.37.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.
@@ -1 +1,7 @@
1
- export default function Header(): import("react/jsx-runtime").JSX.Element;
1
+ import type { LucideIcon } from "lucide-react";
2
+ interface TypesLayoutPublicHeader {
3
+ title?: string;
4
+ icon: LucideIcon;
5
+ }
6
+ export default function Header(props: TypesLayoutPublicHeader): import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -1 +1,7 @@
1
- export declare function LayoutPublic(): import("react/jsx-runtime").JSX.Element;
1
+ import type { LucideIcon } from "lucide-react";
2
+ interface TypesLayoutPublic {
3
+ title: string;
4
+ icon: LucideIcon;
5
+ }
6
+ export declare function LayoutPublic(props: TypesLayoutPublic): import("react/jsx-runtime").JSX.Element;
7
+ export {};