/** @typedef {typeof __propDef.props} ContactFormProps */ /** @typedef {typeof __propDef.events} ContactFormEvents */ /** @typedef {typeof __propDef.slots} ContactFormSlots */ export default class ContactForm extends SvelteComponentTyped<{ lpKey: any; country: any; settings: any; hash: any; properties: any; service: any; gclid: any; getFormatDate?: ((date: any) => string) | undefined; }, { [evt: string]: CustomEvent; }, {}> { get getFormatDate(): (date: any) => string; } export type ContactFormProps = typeof __propDef.props; export type ContactFormEvents = typeof __propDef.events; export type ContactFormSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { lpKey: any; country: any; settings: any; hash: any; properties: any; service: any; gclid: any; getFormatDate?: ((date: any) => string) | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};