import { ComponentPropsWithoutRef, FC, PropsWithChildren } from 'react'; import { DocumentedPropsWithChildren } from 'bloko/common/helpers/types'; interface ModalFooterProps extends ComponentPropsWithoutRef<'div'> { /** Выравнивание контента футера по левому краю */ alignmentLeft?: boolean; /** Указывает на строку с компонентом в исходном коде в режиме разработки. Генерируется babel-plugin-react-source */ source?: string; } /** * Подвал модального окна */ declare const ModalFooter: FC & PropsWithChildren>; export default ModalFooter;