import { default as Button } from '@mui/material/Button'; import { SxProps } from '@mui/material/styles'; type Color = 'primary' | 'inherit' | 'secondary' | 'success' | 'error' | 'info' | 'warning'; type FooterProps = { footerStyles?: SxProps; hasSecondaryAction?: boolean; isPrimaryDisabled?: boolean; onPrimaryAction?: () => void; onSecondaryAction?: () => void; primaryButtonProps?: React.ComponentProps; primaryColor?: Color; primaryText?: string; secondaryColor?: Color; secondaryText?: string; }; declare const Footer: ({ footerStyles, hasSecondaryAction, isPrimaryDisabled, onPrimaryAction, onSecondaryAction, primaryButtonProps, primaryColor, primaryText, secondaryColor, secondaryText, }: FooterProps) => import("react/jsx-runtime").JSX.Element; export default Footer;