import { default as React } from 'react';
import { WorkoutEntry } from './WorkbookStorage';
interface WorkbookPageProps {
    workout: WorkoutEntry;
    onTitleChange: (title: string) => void;
    onContentChange: (content: string) => void;
}
export declare const WorkbookPage: React.FC<WorkbookPageProps>;
export {};
