@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
11 lines (10 loc) • 351 B
text/typescript
import { FlexboxProps } from "../../Flex/type.mjs";
import { FC } from "react";
//#region src/mdx/Callout/index.d.ts
interface CalloutProps extends FlexboxProps {
type?: 'tip' | 'error' | 'important' | 'info' | 'warning';
}
declare const Callout: FC<CalloutProps>;
//#endregion
export { Callout, CalloutProps };
//# sourceMappingURL=index.d.mts.map