import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import type { LinkExProps } from '@ariestools/sdk-react/link'; import React from 'react'; /** Props for {@link FooterAlwaysLinks}. */ export interface FooterAlwaysLinksProps extends FlexBoxProps { footerLinks?: LinkExProps[]; onMore?: () => void; } /** Always-visible footer link row with optional more toggle. */ export declare const FooterAlwaysLinks: React.FC; //# sourceMappingURL=AlwaysLinks.d.ts.map