import type { KintoneFormFieldProperty } from "@kintone/rest-api-client"; type SupportedFieldType = Exclude; export declare const isSupportedField: (field: KintoneFormFieldProperty.OneOf) => field is SupportedFieldType; type SupportedFieldTypeInSubtable = Exclude; export declare const isSupportedFieldInSubtable: (field: KintoneFormFieldProperty.InSubtable) => field is SupportedFieldTypeInSubtable; export {};