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