/**
 * Props for use book editor monaco styles.
 */
type UseBookEditorMonacoStylesProps = {
    readonly instanceClass: string;
    readonly scaledLineHeight: number;
    readonly scaledContentPaddingLeft: number;
    readonly scaledVerticalLineLeft: number;
    readonly zoomLevel: number;
    readonly theme: 'LIGHT' | 'DARK';
};
/**
 * Injects notebook-inspired styling that is unique per `BookEditorMonaco` instance.
 *
 * @private function of BookEditorMonaco
 */
export declare function useBookEditorMonacoStyles({ instanceClass, scaledLineHeight, scaledContentPaddingLeft, scaledVerticalLineLeft, zoomLevel, theme, }: UseBookEditorMonacoStylesProps): void;
export {};
