import { CSSProperties } from 'react'; interface QuestLabsProps { style?: CSSProperties | undefined | any; icon?: boolean; textStyle?: CSSProperties | undefined; iconStyle?: CSSProperties | undefined; text?: string | undefined; link?: string | undefined; } export default function QuestLabs({ style, textStyle, iconStyle, text, link, icon, }: QuestLabsProps): import("react/jsx-runtime").JSX.Element; export {};