export type ChoiceInputTypes = "checkbox" | "radio"; export interface ChoiceInputOptions { name: string; value: string; label: string; } export type ChoiceInputSizes = "small" | "large" | "";