export type listType = {label: string, value: string}

export type TOption<T extends string | number = string> = {
  value: T;
  label: string;
}

export type TCaptionLayout = "dropdown" | "dropdown-months" | "dropdown-years" | "label";
export type MaritalStatus = "single" | "married" | "divorced" | "widowed" | "separated";
