@assistant-ui/react
Version:
TypeScript/React library for AI Chat
17 lines • 931 B
TypeScript
import { ActionButtonProps } from "../../utils/createActionButton";
declare const useActionBarExportMarkdown: ({ filename, onExport, }?: {
filename?: string | undefined;
onExport?: ((content: string) => void | Promise<void>) | undefined;
}) => (() => Promise<void>) | null;
export declare namespace ActionBarPrimitiveExportMarkdown {
type Element = HTMLButtonElement;
type Props = ActionButtonProps<typeof useActionBarExportMarkdown>;
}
export declare const ActionBarPrimitiveExportMarkdown: import("react").ForwardRefExoticComponent<Omit<import("react").ClassAttributes<HTMLButtonElement> & import("react").ButtonHTMLAttributes<HTMLButtonElement> & {
asChild?: boolean;
}, "ref"> & {
filename?: string | undefined;
onExport?: ((content: string) => void | Promise<void>) | undefined;
} & import("react").RefAttributes<HTMLButtonElement>>;
export {};
//# sourceMappingURL=ActionBarExportMarkdown.d.ts.map