declare const _default: {
    new (): {
        /**
         * ID
         */
        _id: number;
        id: number;
        /**
         * Nome do procedimento
         */
        _name: string;
        name: string;
        /**
         * Descrição do procedimento
         */
        _description: string;
        description: string;
        /**
         * Validade do procedimento em dias
         */
        _validityDays: number;
        validityDays: number;
        /**
         * Possui integração com GAS => default:false
         */
        _integratedWithGAS: boolean;
        integratedWithGAS: boolean;
        toJsonString(): string;
        replaceArray(json: string): string;
        toJson(): any;
        isArray(what: any): boolean;
    };
};
export = _default;
