import { ComponentProps } from "react";
import { Feedback } from "./";
type FeedbackProps = ComponentProps<typeof Feedback>;
type PresetProperties = Pick<FeedbackProps, "label" | "type" | "options" | "addOnQuestion">;
export declare const PRESETS: Record<string, PresetProperties>;
export {};