@promptbook/vercel
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
15 lines (14 loc) • 435 B
TypeScript
type BookEditorActionbarProps = {
value: string | undefined;
isDownloadButtonShown?: boolean;
isAboutButtonShown?: boolean;
isFullscreenButtonShown?: boolean;
onFullscreenClick?: () => void;
isFullscreen?: boolean;
};
/**
*
* @private Internal component used by `BookEditor`
*/
export declare function BookEditorActionbar(props: BookEditorActionbarProps): import("react/jsx-runtime").JSX.Element;
export {};