moondust 0.0.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.
@@ -0,0 +1,18 @@
1
+ import { JSX, Accessor, Component } from 'solid-js';
2
+ import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
3
+ import { VariantProps } from 'class-variance-authority';
4
+
5
+ interface TextProps extends JSX.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof variants> {
6
+ }
7
+ declare function Text(props: TextProps): JSX.Element;
8
+ declare const variants: (props?: ({
9
+ as?: "h1" | "h2" | "h4" | "p" | null | undefined;
10
+ variant?: "default" | "error" | null | undefined;
11
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
12
+
13
+ declare function createHello(): [Accessor<string>, (to: string) => void];
14
+ declare const Hello: Component<{
15
+ to?: string;
16
+ }>;
17
+
18
+ export { Hello, Text, createHello };