@prezly/theme-kit-ui
Version:
UI components for Prezly themes
24 lines (23 loc) • 994 B
TypeScript
import { SocialMedia } from '../StoryShareLinks';
import { SubFooter } from './SubFooter';
export declare function Footer({ className, companySocials, externalSiteLink, hasStandaloneAboutPage, hasStandaloneContactsPage, newsroomName, publicGalleriesCount, isWhiteLabeled, intl, privacyRequestLink, }: Footer.Props): import("react/jsx-runtime").JSX.Element;
export declare namespace Footer {
interface Intl extends SubFooter.Intl {
['contacts.title']: string;
['boilerplate.about']: string;
['mediaGallery.title']: string;
['allStories.title']: string;
}
interface Props {
className?: string;
isWhiteLabeled?: boolean;
companySocials: SocialMedia.CompanySocials;
externalSiteLink?: string;
hasStandaloneAboutPage?: boolean;
hasStandaloneContactsPage?: boolean;
publicGalleriesCount: number;
newsroomName: string;
intl?: Partial<Intl>;
privacyRequestLink: string;
}
}