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