import { type PropType, type ExtractPropTypes } from 'vue'; import { isMobile } from '../utils'; export type ContactEditInfo = { tel: string; name: string; isDefault?: boolean; }; export declare const contactEditProps: { isEdit: BooleanConstructor; isSaving: BooleanConstructor; isDeleting: BooleanConstructor; showSetDefault: BooleanConstructor; setDefaultLabel: StringConstructor; contactInfo: { type: PropType; default: () => ContactEditInfo; }; telValidator: { type: PropType<(val: string) => boolean>; default: typeof isMobile; }; }; export type ContactEditProps = ExtractPropTypes; declare const _default: import("vue").DefineComponent<{ isEdit: BooleanConstructor; isSaving: BooleanConstructor; isDeleting: BooleanConstructor; showSetDefault: BooleanConstructor; setDefaultLabel: StringConstructor; contactInfo: { type: PropType; default: () => ContactEditInfo; }; telValidator: { type: PropType<(val: string) => boolean>; default: typeof isMobile; }; }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("delete" | "save" | "changeDefault")[], "delete" | "save" | "changeDefault", import("vue").PublicProps, Readonly; default: () => ContactEditInfo; }; telValidator: { type: PropType<(val: string) => boolean>; default: typeof isMobile; }; }>> & { onDelete?: ((...args: any[]) => any) | undefined; onSave?: ((...args: any[]) => any) | undefined; onChangeDefault?: ((...args: any[]) => any) | undefined; }, { isSaving: boolean; isDeleting: boolean; showSetDefault: boolean; telValidator: (val: string) => boolean; isEdit: boolean; contactInfo: ContactEditInfo; }, {}>; export default _default;