/**
 * A representation of a question submission response.
 *
 * @public
 */
export interface QuestionSubmissionResponse {
    /** A unique id which corresponds to the request. */
    uuid: string;
}
