export type TSqlGooglePlace = { google_place_id: string; country_code: string; city_code: string | null; street_code: string | null; display_name: string; name_en: string | null; name_native: string | null; name_ko: string | null; is_active: boolean; is_display: boolean; }; export type TSqlGooglePlaceDetail = TSqlGooglePlace & { editorial_summary: string | null; types: string | null; primary_type: string | null; phone: string | null; address: string | null; plus_code_global: string | null; plus_code_compound: string | null; latitude: number | null; longitude: number | null; location: string | null; low_latitude: number | null; low_longitude: number | null; high_latitude: number | null; high_longitude: number | null; rating: number | null; user_rating_count: number | null; periods: string | null; weekday_descriptions: string | null; business_status: string | null; utc_offset_minutes: number | null; timezone: string | null; photos: string | null; directions_uri: string | null; place_uri: string | null; reviews_uri: string | null; photos_uri: string | 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_vegetarian_available: boolean | null; is_breakfast: boolean | null; is_brunch: boolean | null; is_lunch: boolean | null; is_dinner: boolean | null; is_bar: boolean | null; is_club: boolean | null; is_open_always: boolean | null; period_start: string | null; period_end: string | null; fetched_at: string; created_at: string; updated_at: string; }; export type TSqlGooglePlaceDetailInsert = { google_place_id: string; display_name: string; } & Partial>; export type TSqlGooglePlaceDetailUpdate = { google_place_id: string; } & Partial>; export declare const DB_COLUMNS_GOOGLE_PLACE_LIST_FOR_ADMIN: string[]; export declare const KEYS_GOOGLE_PLACE_STR: string[]; export declare const KEYS_GOOGLE_PLACE_NUM: string[]; export declare const KEYS_GOOGLE_PLACE_BOOL: string[]; export declare const KEYS_GOOGLE_PLACE_STR_ARRAY: never[];