@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
15 lines (14 loc) • 480 B
TypeScript
import { OptionListItem } from "../optionsList/types";
import { InfoListType } from "../infoList/InfoList";
type Props = {
userName: string;
email: string;
info?: InfoListType;
options?: OptionListItem<string>[];
after?: React.ReactNode;
};
export type AccountButtonHandle = {
closeMenu: () => void;
};
export declare const VuiAccountButton: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<AccountButtonHandle>>;
export {};