import React from 'react';
import { SxProps, Theme } from '@mui/material';
export type PortalSectionHeaderProps = {
    title: string;
    buttonText?: string;
    summaryText?: React.ReactNode;
    link?: string;
    sx?: SxProps<Theme>;
    centered?: boolean;
    reverseButtonAndText?: boolean;
};
declare const PortalSectionHeader: ({ title, buttonText, summaryText, link, sx, centered, reverseButtonAndText, }: PortalSectionHeaderProps) => React.ReactNode;
export default PortalSectionHeader;
//# sourceMappingURL=PortalSectionHeader.d.ts.map