/** * @uiName Footer * @slots [{"name":"", "title":"Support Content"}] */ export declare class Footer { ignored: boolean; /** * Display link to terms & conditions * * @uiName Show Terms Link */ showterms: boolean; /** * Display link to payment info * * @uiName Show Payment Info */ showpaymentinfo: boolean; /** * Display support text * * @uiName Show Support */ showsupport: boolean; /** * Text inside the terms and conditions link * * @uiName Terms Text */ termstext: string; /** * Text inside the FAQ link * * @uiName FAQ Text */ faqtext: string; /** * Text inside the payment info link * * @uiName Payment Info Text */ paymentinfotext: string; /** * Routing path to the FAQ page * * @uiName FAQ Path */ faqPath: string; /** * Routing path to the payment info page * * @uiName Payment Info Path */ paymentInfoPath?: string; constructor(); disconnectedCallback(): void; render(): any; }