import { SxProps, Theme } from '@mui/material';
import { Breakpoint } from '@mui/system';
import { FunctionComponent, ReactNode } from 'react';

interface SectionHeaderProps {
    buttons?: ReactNode;
    loading?: boolean;
    subtitle?: string;
    title?: string;
    maxWidth?: Breakpoint | false;
    sx?: SxProps<Theme>;
}
declare const SectionHeader: FunctionComponent<SectionHeaderProps>;

export { SectionHeader as default };
export type { SectionHeaderProps };
