import { ReactNode } from 'react'; export interface FooterBottomProps { /** * Bottom-row content — typically a sequence of `` elements. On mobile the gap shrinks * and items wrap to multiple lines. */ children: ReactNode; /** * Insert a small dot between items (matches the Figma "with separator" bottom variant). When * `false`, items are spaced only by the flex `gap`. * @default false */ separator?: boolean; /** * Additional class name on the bottom strip. */ className?: string; } export declare const FooterBottom: { ({ children, separator, className }: FooterBottomProps): JSX.Element; displayName: string; }; export default FooterBottom;