import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import type { ContainerProps } from '@mui/material'; import React from 'react'; import type { FooterAlwaysLinksProps } from './AlwaysLinks.js'; /** Props for {@link Footer}. */ export interface FooterProps extends FlexBoxProps { alwaysFooterLinksProps?: FooterAlwaysLinksProps; container?: ContainerProps['maxWidth'] | 'none'; dynamicHeight?: boolean; } /** Page footer layout with optional expandable content and always-visible links. */ export declare const Footer: React.FC; //# sourceMappingURL=Footer.d.ts.map