import type { CreateComponentDoc } from "../../types/CreateComponentDoc"; export type Button = CreateComponentDoc<"button", { properties: { id?: string; type?: "primary" | "warning" | "danger" | "info"; size?: "normal" | "large" | "small" | "mini"; color?: string; }; }>;