@fluster.io/dev
Version:
22 lines (21 loc) • 572 B
TypeScript
import { default as React } from 'react';
declare const meta: {
component: {
({ folded, children, type, foldable, title: _title, InlineMdxContent, ...props }: import('./index').AdmonitionProps): React.ReactNode;
displayName: string;
};
title: string;
};
export default meta;
export declare const Foldable: {
args: {
foldable: true;
title: string;
type: "info";
children: React.JSX.Element;
folded: false;
InlineMdxContent: ({ mdx }: {
mdx: string;
}) => string;
};
};