import { CSSProperties } from 'react'; interface QuestLabsProps { style?: CSSProperties | undefined; icon?: boolean; textStyle?: CSSProperties | undefined; imageStyle?: CSSProperties | undefined; className?: string; id?: string; key?: string | number; } export default function QuestLabsFooter({ style, icon, textStyle, imageStyle, className, id, key, }: QuestLabsProps): import("react/jsx-runtime").JSX.Element; export {};