@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
15 lines (14 loc) • 534 B
TypeScript
import { ReactElement, ReactNode } from "react";
type Props = {
title: ReactNode;
description?: ReactNode;
footer?: ReactNode;
icon?: ReactElement;
onClick: () => void;
isDisabled?: boolean;
className?: string;
"data-testid"?: string;
"aria-label"?: string;
};
export declare const VuiComplexConfigurationButton: ({ title, description, footer, icon, onClick, isDisabled, className, "data-testid": dataTestId, "aria-label": ariaLabel }: Props) => import("react/jsx-runtime").JSX.Element;
export {};