UNPKG

ar-design

Version:

AR Design is a (react | nextjs) ui library.

16 lines (15 loc) 467 B
import React, { Dispatch, SetStateAction } from "react"; import { Actions } from "../IProps"; interface IProps { states: { createTrigger: { get: boolean; set: Dispatch<SetStateAction<boolean>>; }; }; title?: string; description?: string; actions?: Actions; } declare const _default: React.MemoExoticComponent<({ states, title, description, actions }: IProps) => React.JSX.Element>; export default _default;