@prezly/theme-kit-ui
Version:
UI components for Prezly themes
15 lines (14 loc) • 567 B
TypeScript
import { DataRequestLink } from './DataRequestLink';
export declare function SubFooter({ privacyRequestLink, isWhiteLabeled, newsroomDisplayName, intl, }: SubFooter.Props): import("react/jsx-runtime").JSX.Element;
export declare namespace SubFooter {
interface Intl extends DataRequestLink.Intl {
['actions.startUsingCookies']: string;
['actions.stopUsingCookies']: string;
}
interface Props {
privacyRequestLink: string;
isWhiteLabeled?: boolean;
newsroomDisplayName: string;
intl?: Partial<Intl>;
}
}