based-auth
Version:
A Next.js/Node.js authentication and wallet API kit for Ethereum and Solana, with utilities for serialization and contract interaction, designed for serverless and API route usage.
39 lines (38 loc) • 2.26 kB
TypeScript
import * as React from "react";
declare const Drawer: {
({ shouldScaleBackground, ...props }: {
[x: string]: any;
shouldScaleBackground?: boolean | undefined;
}): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
declare const DrawerTrigger: React.ForwardRefExoticComponent<import('@radix-ui/react-dialog').DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
declare const DrawerPortal: typeof import('vaul').Portal;
declare const DrawerClose: React.ForwardRefExoticComponent<import('@radix-ui/react-dialog').DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
declare const DrawerOverlay: React.ForwardRefExoticComponent<Omit<Omit<import('@radix-ui/react-dialog').DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & {
className?: string | undefined;
} & React.RefAttributes<HTMLDivElement>>;
declare const DrawerContent: React.ForwardRefExoticComponent<Omit<Omit<import('@radix-ui/react-dialog').DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & {
className?: string | undefined;
} & React.RefAttributes<HTMLDivElement>>;
declare const DrawerHeader: {
({ className, ...props }: {
className: string;
props: any;
}): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
declare const DrawerFooter: {
({ className, ...props }: {
className: string;
props: any;
}): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
declare const DrawerTitle: React.ForwardRefExoticComponent<Omit<import('@radix-ui/react-dialog').DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & {
className?: string | undefined;
} & React.RefAttributes<HTMLHeadingElement>>;
declare const DrawerDescription: React.ForwardRefExoticComponent<Omit<import('@radix-ui/react-dialog').DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & {
className?: string | undefined;
} & React.RefAttributes<HTMLParagraphElement>>;
export { Drawer, DrawerPortal, DrawerOverlay, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, };