import * as React from "react"; export interface ModalCenteredLowOpacityProps { open: boolean; closeBtnLabel: string; onClose(): void; onSubmit(): void; onSubmitSecondaryOption?(): void; buttonColor?: string; secondaryButtonColor?: string; secondaryOptionBtnLabel?: string; bottomLabel?: React.ReactNode; } declare const ModalCenteredLowOpacity: React.FC; export default ModalCenteredLowOpacity;