import * as react from 'react';
import { FlexProps } from '@teamsparta/stack-flex';

interface CustomModalFooterProps extends FlexProps<"div"> {
}
declare const CustomModalFooter: react.ForwardRefExoticComponent<Omit<CustomModalFooterProps, "ref"> & react.RefAttributes<HTMLElement>>;

export { CustomModalFooter, type CustomModalFooterProps };
