@apexcura/ui-builder
Version:
A low-code UI builder library for dynamic form generation and reusable components built with React, Redux, Tailwind, and Ant Design.
15 lines (14 loc) • 389 B
TypeScript
import { ElementType } from '../Types/types';
interface autoCompleteProps {
value?: {
key?: string;
value?: string;
};
}
interface customProps extends ElementType {
value?: autoCompleteProps;
onSelect?: any;
context?: any;
}
export declare const ACAutoCompleteInputWithButton: (props: customProps) => import("react/jsx-runtime").JSX.Element;
export {};