import React from 'react';
import type { Size } from './types';
type IBookPageBackgroundProps = {
    left: {
        index: number;
        content: string;
        totalPages: number;
    };
    right: {
        index: number;
        content: string;
        totalPages: number;
    };
    isFirstPage: boolean;
    isLastPage: boolean;
    containerSize: Size;
    getPageStyle: (right: boolean, front: boolean) => any;
    renderPage?: (page: {
        index: number;
        content: string;
        totalPages: number;
    }) => any;
    renderLastPage?: () => any;
    shouldRenderLastPage: boolean;
};
declare const BookPageBackground: React.FC<IBookPageBackgroundProps>;
export { BookPageBackground };
//# sourceMappingURL=BookPageBackground.d.ts.map