import React from 'react';
export default function ModalCreateBorrowTicket({ currentSchoolYearId, educationalCodes, onHide, show, }: {
    show: boolean;
    onHide?(): void;
    educationalCodes: Array<string>;
    currentSchoolYearId: number;
}): React.JSX.Element;
