import { VNode } from "../../stencil-public-runtime"; export interface FooterViewProps { states: { showterms: boolean; showpaymentinfo: boolean; showsupport: boolean; styles: { termstext: string; faqtext: string; paymentinfotext: string; }; }; data: { programId: string; }; callbacks: { goToFAQ: () => void; goToPaymentInfo: () => void; }; } export declare function FooterView(props: FooterViewProps, children: VNode): any;