import { z } from 'zod'; import { QuestionDefinition } from '../core'; declare const FacesRatingBar: "FacesRatingBar"; export type FacesRatingBarComponentType = typeof FacesRatingBar; export interface FacesRatingBarComponentDefinition extends QuestionDefinition { tooltips?: [string, string, string, string, string]; } export declare const FacesRatingBarSchema: z.ZodObject<{ type: z.ZodLiteral<"FacesRatingBar">; questionId: z.ZodString; label: z.ZodString; tooltips: z.ZodOptional>; }, "strip", z.ZodTypeAny, { type: "FacesRatingBar"; questionId: string; label: string; tooltips?: [string, string, string, string, string] | undefined; }, { type: "FacesRatingBar"; questionId: string; label: string; tooltips?: [string, string, string, string, string] | undefined; }>; export {}; //# sourceMappingURL=faces-rating-bar.d.ts.map