import { Question } from "../question";
/**
 * Type guard to check that argument is assignable to PublicQuestion
 * @param arg
 * @returns
 */
export declare const isQuestion: (arg: unknown) => arg is Question;
