infinity-forge
Version:
26 lines (25 loc) • 760 B
TypeScript
import { AtenaPageProps, IconsNames, IFormHandler } from '../../../../../../ui/index.js';
import * as Versions from './versions/index.js';
export type ContactVersionsName = keyof typeof Versions;
type ContactItem = {
id: number;
titulo: string;
icon: IconsNames;
link: string;
target: boolean;
};
export type ContactJSON = {
version?: ContactVersionsName;
inputName?: boolean;
inputEmail?: boolean;
inputPhone?: boolean;
inputDescription?: boolean;
items?: ContactItem[];
css?: string;
recaptcha?: string;
messageProviderKey?: string;
};
export declare function Contact({ isGlobal, formHandler }: AtenaPageProps & {
formHandler?: IFormHandler;
}): import("react/jsx-runtime").JSX.Element;
export {};