import { type FC, type ReactNode } from 'react'; export type FooterProps = { /** * Контент футера */ children?: ReactNode; /** * Дополнительный класс */ className?: string; /** * Фиксирует футер */ sticky?: boolean; /** * Выравнивание элементов футера */ layout?: 'start' | 'center' | 'space-between' | 'column'; /** * Отступы между элементами футера */ gap?: 16 | 24 | 32; }; export declare const Footer: FC;