/** * Type for QAndABox component * @module utils/qAndABox */ /** * Interface that defines property for QAndABox component * @property {string} question * @example * *

Read Your F* Manual.

*
*/ interface QAndABoxProperty { question: string; } export type { QAndABoxProperty };