export interface QueryDataResponse { valid: boolean, message?: string, data?: T } export interface FormResponse { valid: boolean, message?: string, id?: number | string } export interface SelectBoxProps { label: string; value: string; } export type ViewMode = 'list' | 'detail' | 'edit';