export type SubmissionPageProps = {
    /** The ID of the submission to view */
    submissionId: string | number;
    /** If true, display reviewer controls on the page */
    isReviewer: boolean;
};
/**
 * Page for a Data Access Submission. Supports the following user types:
 *  - ACT member or other designated reviewer can view, and choose to approve or reject.
 *  - Data Access Request submitter can view and modify their own submission.
 *  - Data Access Request requester (who is not a submitter) can view their own submission.
 */
export default function SubmissionPage(props: SubmissionPageProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=SubmissionPage.d.ts.map