@prezly/theme-kit-ui
Version:
UI components for Prezly themes
20 lines (19 loc) • 762 B
TypeScript
import type { NewsroomCompanyInformation } from '@prezly/sdk';
export declare function Boilerplate({ className, companyInformation, intl }: Boilerplate.Props): import("react/jsx-runtime").JSX.Element | null;
export declare namespace Boilerplate {
interface DisplayedInformation {
about: NewsroomCompanyInformation['about'];
phone: NewsroomCompanyInformation['phone'];
email: NewsroomCompanyInformation['email'];
address: NewsroomCompanyInformation['address'];
website: NewsroomCompanyInformation['website'];
}
interface Intl {
['boilerplate.title']: string;
}
interface Props {
className?: string;
companyInformation: DisplayedInformation;
intl?: Partial<Intl>;
}
}