export type TSqlContentList = { content_code: string; country_code: string; city_code: string | null; street_code: string | null; name_en: string | null; name_native: string | null; name_ko: string | null; address_en: string | null; utc_offset_minutes: number | null; timezone: string | null; is_active: boolean; is_display: boolean; }; export type TSqlContentDetail = TSqlContentList & { description_en: string | null; description_native: string | null; phone: string | null; address_native: string | null; latitude: number | null; longitude: number | null; location: string | null; radius_m: number | null; naver_map_url: string | null; instagram_id: string | null; youtube_ch_id: string | null; google_place_url: string | null; trip_advisor_url: string | null; facebook: string | null; is_target_for_family: boolean | null; is_target_for_children: boolean | null; is_target_for_couple: boolean | null; is_target_for_friends: boolean | null; is_target_for_solo: boolean | null; taking_minutes_start: number | null; taking_minutes_end: number | null; is_free_available: boolean | null; price_symbol: string | null; price_start: number | null; price_end: number | null; is_open_always: boolean | null; period_start: string | null; period_end: string | null; created_at: string; updated_at: string; thumbnail_main_1: string | null; thumbnail_main_2: string | null; thumbnail_main_3: string | null; thumbnail_main_4: string | null; thumbnail_main_5: string | null; thumbnail_1: string | null; thumbnail_2: string | null; thumbnail_3: string | null; thumbnail_4: string | null; thumbnail_5: string | null; thumbnail_vertical_1: string | null; thumbnail_vertical_2: string | null; thumbnail_vertical_3: string | null; thumbnail_vertical_4: string | null; thumbnail_vertical_5: string | null; }; export type TSqlContentDetailInsert = { content_code: string; name_en: string; } & Partial>; export type TSqlContentDetailUpdate = { content_code: string; } & Partial>; export declare const DB_COLUMNS_CONTENT_LIST_FOR_ADMIN: string[]; export declare const KEYS_CONTENT_STR: string[]; export declare const KEYS_CONTENT_NUM: string[]; export declare const KEYS_CONTENT_BOOL: string[]; export declare const KEYS_CONTENT_STR_ARRAY: never[];